diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-05-07 20:04:45 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-05-07 20:04:45 +0300 |
commit | 8db61e5b5ae791249508895989a06f2466741f88 (patch) | |
tree | 1006c8e9e66e2222d5b54656c8a35ecd74c7eac5 /esp8266/scripts/inisetup.py | |
parent | 5ec11f565b1999d0017fedd8efb61bbb5e5f59cd (diff) | |
download | micropython-8db61e5b5ae791249508895989a06f2466741f88.tar.gz micropython-8db61e5b5ae791249508895989a06f2466741f88.zip |
esp8266/scripts/inisetup: Don't start WebREPL on boot in master branch.
It interferes with running testsuite. master branch should be optimized for
development, so any features which interfere with that, would need to be
disabled by default.
Diffstat (limited to 'esp8266/scripts/inisetup.py')
-rw-r--r-- | esp8266/scripts/inisetup.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/esp8266/scripts/inisetup.py b/esp8266/scripts/inisetup.py index 93a05bd8a7..461690b162 100644 --- a/esp8266/scripts/inisetup.py +++ b/esp8266/scripts/inisetup.py @@ -40,7 +40,7 @@ def setup(): with open("/boot.py", "w") as f: f.write("""\ # This file is executed on every boot (including wake-boot from deepsleep) -import webrepl -webrepl.start() +#import webrepl +#webrepl.start() """) return vfs |