Fix E112 expected an indented block

Comment blocks should be indented alongside the code.

Change-Id: I7cb2207bb2c0dcdc3036c6cf7575133930da8164
This commit is contained in:
Dirk Mueller 2014-07-03 21:21:46 +02:00
parent 369ac3c39b
commit 30b5fbefd0

View File

@ -380,9 +380,9 @@ category_opt = cfg.SubCommandOpt('category',
def get_arg_string(args):
arg = None
if args[0] == '-':
# (Note)zhiteng: args starts with CONF.oparser.prefix_chars
# is optional args. Notice that cfg module takes care of
# actual ArgParser so prefix_chars is always '-'.
# (Note)zhiteng: args starts with CONF.oparser.prefix_chars
# is optional args. Notice that cfg module takes care of
# actual ArgParser so prefix_chars is always '-'.
if args[1] == '-':
# This is long optional arg
arg = args[2:]