diff options
author | Damien George <damien.p.george@gmail.com> | 2018-06-05 14:30:35 +1000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2018-06-05 14:30:35 +1000 |
commit | aace60a75e5afedadfc30d33e91ef7c6fa312405 (patch) | |
tree | a97e22b6785fb480cf0144813168fe3d2fcc0cdf | |
parent | a90124a9e20fac828aa6e7702f8196092ee354b0 (diff) | |
download | micropython-aace60a75e5afedadfc30d33e91ef7c6fa312405.tar.gz micropython-aace60a75e5afedadfc30d33e91ef7c6fa312405.zip |
esp8266/modules/ntptime.py: Remove print of newly-set time.
It should be up to the user if they want to print the new time out or not.
Fixes issue #3766.
-rw-r--r-- | ports/esp8266/modules/ntptime.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ports/esp8266/modules/ntptime.py b/ports/esp8266/modules/ntptime.py index a97e08e60d..85c754af6c 100644 --- a/ports/esp8266/modules/ntptime.py +++ b/ports/esp8266/modules/ntptime.py @@ -33,4 +33,3 @@ def settime(): tm = utime.localtime(t) tm = tm[0:3] + (0,) + tm[3:6] + (0,) machine.RTC().datetime(tm) - print(utime.localtime()) |