diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2013-04-22 23:15:05 +0200 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2013-04-22 23:15:05 +0200 |
commit | c76cb6d54843695a5221ea314f399eb9cdc61442 (patch) | |
tree | 61e5710842890a026e1719799a093fc26493b1e4 | |
parent | 75b5c590a8470b40f5bba869be09393757182ddf (diff) |
Correct indentation
-rw-r--r-- | youtube_dl/__init__.py | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/youtube_dl/__init__.py b/youtube_dl/__init__.py index f60fb841e..7df297d02 100644 --- a/youtube_dl/__init__.py +++ b/youtube_dl/__init__.py @@ -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 |