From 2061fe7279f2e8532f4d68f47605f40cc777c5e1 Mon Sep 17 00:00:00 2001 From: Ruud Date: Sat, 22 Oct 2011 21:41:24 +0200 Subject: [PATCH] Reverse uses_git in environment --- couchpotato/runner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/couchpotato/runner.py b/couchpotato/runner.py index c9d411c4..27d1e1ed 100644 --- a/couchpotato/runner.py +++ b/couchpotato/runner.py @@ -56,7 +56,7 @@ def runCouchPotato(options, base_path, args): # Register environment settings - Env.set('uses_git', options.nogit) + Env.set('uses_git', not options.nogit) Env.set('app_dir', base_path) Env.set('data_dir', data_dir) Env.set('log_path', os.path.join(log_dir, 'CouchPotato.log'))