Remove the unused discs option. We determine disc number on the fly.

This commit is contained in:
Jesse Keating 2008-07-15 23:09:57 -04:00
parent 6ae28edb54
commit 8331ae9e0f
2 changed files with 0 additions and 4 deletions

View File

@ -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",

View File

@ -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")