Add ESP32 Ethernet Support (#301)

* Fix

* Build flags

* Fix
This commit is contained in:
Otto Winter
2019-01-05 20:47:33 +01:00
committed by GitHub
parent 3f4bba57f4
commit e72ef9e061
6 changed files with 98 additions and 10 deletions
+1 -1
View File
@@ -291,6 +291,6 @@ class CheckForUpdateThread(threading.Thread):
def start_update_check_thread(path):
# dummy call to strptime as python 2.7 has a bug with strptime when importing from threads
datetime.strptime('20180101', '%Y%m%d')
thread = CheckForUpdateThread(path)
thread = CheckForUpdateThread(os.path.abspath(path))
thread.start()
return thread