From 27eaa9f7570e67b06812f4c212499b1facdc1f7f Mon Sep 17 00:00:00 2001 From: Jason Tibbitts Date: Jun 15 2013 04:43:54 +0000 Subject: Remove another python 2.7-ism. --- diff --git a/scripts/review-stats/review-stats.py b/scripts/review-stats/review-stats.py index 11dc682..3433392 100755 --- a/scripts/review-stats/review-stats.py +++ b/scripts/review-stats/review-stats.py @@ -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)