Remove another python 2.7-ism.

This commit is contained in:
Jason Tibbitts 2013-06-14 23:43:54 -05:00
parent 3f73c01431
commit 27eaa9f757

View file

@ -608,7 +608,7 @@ if __name__ == '__main__':
config = parse_config(options.configfile)
if config['maxpackages']:
maxpackages = int(config['maxpackages'])
dbprint("Limiting to {} packages".format(maxpackages))
dbprint("Limiting to {0} packages".format(maxpackages))
bz = bugzilla.RHBugzilla(url=config['url'], cookiefile=None, user=config['username'], password=config['password'])
t = time.time()
(bugs, bugdata, usermap) = run_query(bz)