diff options
author | bill <bill@pixelspoke.com> | 2015-05-02 16:35:52 -0700 |
---|---|---|
committer | bill <bill@pixelspoke.com> | 2015-05-02 16:35:52 -0700 |
commit | fb768ee68f0e13d9d7cb23b6dbd60ee77917e5e3 (patch) | |
tree | 6a8e326f01965f91f9a00386110dc0687044d034 | |
parent | 47afcf71711e6a839046a7b035518364de8c5fd1 (diff) |
update generator name missed in earlier renamingv1.0
-rw-r--r-- | bin/user/S3upload.py | 2 | ||||
-rw-r--r-- | skins/S3upload/skin.conf | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/bin/user/S3upload.py b/bin/user/S3upload.py index 7751e5d..a60ab85 100644 --- a/bin/user/S3upload.py +++ b/bin/user/S3upload.py @@ -42,7 +42,7 @@ class S3uploadGenerator(weewx.reportengine.ReportGenerator): """Custom service to upload files to an S3 bucket""" def run(self): - syslog.syslog(syslog.LOG_INFO, """reportengine: S3generator""") + syslog.syslog(syslog.LOG_INFO, """reportengine: S3uploadGenerator""") try: # Get the options from the configuration dictionary. diff --git a/skins/S3upload/skin.conf b/skins/S3upload/skin.conf index ebcd513..cef6202 100644 --- a/skins/S3upload/skin.conf +++ b/skins/S3upload/skin.conf @@ -10,5 +10,5 @@ ############################################################################### [Generators] - generator_list = user.S3upload.S3syncGenerator + generator_list = user.S3upload.S3uploadGenerator |