diff options
-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 |