diff options
author | bill <bill@pixelspoke.com> | 2015-05-05 08:53:23 -0700 |
---|---|---|
committer | bill <bill@pixelspoke.com> | 2015-05-05 08:53:23 -0700 |
commit | 23968a9ee955a05184a0b633b1bda2a2497ac6ba (patch) | |
tree | 9d981866f11fa7d1bf57c56870774527d4c19c48 | |
parent | fb768ee68f0e13d9d7cb23b6dbd60ee77917e5e3 (diff) |
Fix typo in error message
-rw-r--r-- | bin/user/S3upload.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/user/S3upload.py b/bin/user/S3upload.py index a60ab85..921c94c 100644 --- a/bin/user/S3upload.py +++ b/bin/user/S3upload.py @@ -63,7 +63,7 @@ class S3uploadGenerator(weewx.reportengine.ReportGenerator): # Launch in a separate thread so it doesn't block the main LOOP thread: t = threading.Thread(target=S3uploadGenerator.uploadFiles, args=(self, )) t.start() - syslog.syslog(syslog.LOG_DEBUG, "S3upload: reeturn from upload thread") + syslog.syslog(syslog.LOG_DEBUG, "S3upload: return from upload thread") def uploadFiles(self): start_ts = time.time() |