sb: Fix the source option string for getopts.

This commit is contained in:
Chris Johns
2014-06-01 17:57:35 +10:00
parent 467cace5ba
commit 4a315d364a

View File

@@ -179,7 +179,7 @@ class build:
setup_name = args[1] setup_name = args[1]
args = args[1:] args = args[1:]
try: try:
opts, args = getopt.getopt(args[1:], 'qDcn:b:a:') opts, args = getopt.getopt(args[1:], 'qDcn:ba')
except getopt.GetoptError, ge: except getopt.GetoptError, ge:
raise error.general('source setup error: %s' % str(ge)) raise error.general('source setup error: %s' % str(ge))
quiet = False quiet = False