Remove another python 2.7-ism.
This commit is contained in:
parent
3f73c01431
commit
27eaa9f757
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue