Small error pylint spotted

This commit is contained in:
Stefano Rivera 2010-12-26 21:55:15 +02:00
parent 657a57d266
commit e47794030f

View File

@ -80,7 +80,7 @@ class CmdOptions(OptionParser):
elif options.level.upper() in LEVEL.values():
options.level = options.level.upper()
else:
self.error("Unknown access-level '%s', level must be in %s" %(options.level, self.LEVEL))
self.error("Unknown access-level '%s', level must be in %s" %(options.level, LEVEL))
return tool, options
def create_credentials(options):