Remove the unused discs option. We determine disc number on the fly.
This commit is contained in:
parent
6ae28edb54
commit
8331ae9e0f
@ -148,9 +148,6 @@ if __name__ == '__main__':
|
||||
parser.add_option("--bugurl", dest="bugurl", type="string",
|
||||
action="callback", callback=set_config, callback_args=(config, ),
|
||||
help='the url for your bug system (defaults to http://bugzilla.redhat.com)')
|
||||
parser.add_option("--discs", dest="discs", type="string",
|
||||
action="callback", callback=set_config, callback_args=(config, ),
|
||||
help='the number of discs you want to create (defaults to 1)')
|
||||
parser.add_option("--nosource", action="store_true", dest="nosource",
|
||||
help='disable gathering of source packages (optional)')
|
||||
parser.add_option("--nodebuginfo", action="store_true", dest="nodebuginfo",
|
||||
|
@ -40,7 +40,6 @@ class Config(SafeConfigParser):
|
||||
self.set('default', 'flavor', '')
|
||||
self.set('default', 'destdir', os.getcwd())
|
||||
self.set('default', 'bugurl', 'http://bugzilla.redhat.com')
|
||||
self.set('default', 'discs', '1')
|
||||
self.set('default', 'cdsize', '650.0')
|
||||
self.set('default', 'debuginfo', "True")
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user