From c04797422314f4a80dc5f72a5c803a5809faade3 Mon Sep 17 00:00:00 2001 From: Clinton Hall Date: Wed, 6 Mar 2013 11:49:50 -0800 Subject: [PATCH] more indenting --- nzbToMylar.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/nzbToMylar.py b/nzbToMylar.py index c396fa88..cde7ffef 100644 --- a/nzbToMylar.py +++ b/nzbToMylar.py @@ -24,7 +24,7 @@ if len(sys.argv) == 8: # 6 Group that the NZB was posted in e.g. alt.binaries.x # 7 Status of post processing. 0 = OK, 1=failed verification, 2=failed unpack, 3=1+2 Logger.info("Script triggered from SABnzbd, starting autoProcessComics...") - result = autoProcessComics.processEpisode(sys.argv[1], sys.argv[3]) + result = autoProcessComics.processEpisode(sys.argv[1], sys.argv[3]) # NZBGet elif len(sys.argv) == 4: @@ -32,9 +32,9 @@ elif len(sys.argv) == 4: # 1 The final directory of the job (full path) # 2 The original name of the NZB file # 3 The status of the download: 0 == successful - Logger.info("Script triggered from NZBGet, starting autoProcessComics...") - result = autoProcessComics.processEpisode(sys.argv[1], sys.argv[2]) + Logger.info("Script triggered from NZBGet, starting autoProcessComics...") + result = autoProcessComics.processEpisode(sys.argv[1], sys.argv[2]) else: - Logger.warn("Invalid number of arguments received from client. Exiting") - sys.exit(-1) + Logger.warn("Invalid number of arguments received from client. Exiting") + sys.exit(-1)