From 62196a231a25da6bad6f3d3f7f8fb455367b4f7d Mon Sep 17 00:00:00 2001 From: echel0n Date: Tue, 15 Apr 2014 09:22:17 -0700 Subject: [PATCH] Fixed a typo --- autoProcessMedia.cfg.spec | 2 +- nzbtomedia/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/autoProcessMedia.cfg.spec b/autoProcessMedia.cfg.spec index 26a20a32..9635d775 100644 --- a/autoProcessMedia.cfg.spec +++ b/autoProcessMedia.cfg.spec @@ -2,7 +2,7 @@ # For more information, visit https://github.com/clinton-hall/nzbToMedia/wiki [General] - verision_notify = 1 + version_notify = 1 auto_update = 0 git_path = git_user = diff --git a/nzbtomedia/__init__.py b/nzbtomedia/__init__.py index a47c3e6b..975c0da3 100644 --- a/nzbtomedia/__init__.py +++ b/nzbtomedia/__init__.py @@ -173,7 +173,7 @@ def initialize(): CFG = config() # load git cfg info - VERSION_NOTIFY = int(CFG['General']['verision_notify']) + VERSION_NOTIFY = int(CFG['General']['version_notify']) AUTO_UPDATE = int(CFG['General']['auto_update']) GIT_PATH = CFG['General']['git_path'] GIT_USER = CFG['General']['git_user']