Correct indentation
authorPhilipp Hagemeister <phihag@phihag.de>
Mon, 22 Apr 2013 21:15:05 +0000 (23:15 +0200)
committerPhilipp Hagemeister <phihag@phihag.de>
Mon, 22 Apr 2013 21:15:05 +0000 (23:15 +0200)
youtube_dl/__init__.py

index f60fb841e35e50eb576274f46ce7d776cb8c7ccf..7df297d02e63563286e4e5f58e32e9fbe6a83bd4 100644 (file)
@@ -315,11 +315,10 @@ def parseOpts(overrideArguments=None):
         commandLineConf = sys.argv[1:] 
         argv = systemConf + userConf + commandLineConf
         opts, args = parser.parse_args(argv)
-
-    if opts.verbose:
-        print(u'[debug] System config: ' + repr(systemConf))
-        print(u'[debug] User config: ' + repr(userConf))
-        print(u'[debug] Command-line args: ' + repr(commandLineConf))
+        if opts.verbose:
+            print(u'[debug] System config: ' + repr(systemConf))
+            print(u'[debug] User config: ' + repr(userConf))
+            print(u'[debug] Command-line args: ' + repr(commandLineConf))
 
     return parser, opts, args