From 1cb904ada70774f8888e36cc7375c5c218b97f92 Mon Sep 17 00:00:00 2001 From: David Schnur Date: Thu, 27 Sep 2012 17:21:47 -0400 Subject: [PATCH] Fixed a string formatting error. --- migrateissues.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/migrateissues.py b/migrateissues.py index 96729a8..4fe4b6a 100644 --- a/migrateissues.py +++ b/migrateissues.py @@ -208,6 +208,7 @@ def process_gcode_issues(existing_issues): break for issue in issues_feed.entry: + gid = parse_gcode_id(issue.id.text) # If we're trying to do a complete migration to a fresh Github project, and @@ -217,7 +218,7 @@ def process_gcode_issues(existing_issues): if options.synchronize_ids and previous_gid + 1 < gid: while previous_gid + 1 < gid: - output("Adding dummy issue %d" % previous_gid + 1) + output("Adding dummy issue %d\n" % (previous_gid + 1)) title = "Google Code skipped issue %d" % (previous_gid + 1) if title not in existing_issues: body = "_Skipping this issue number to maintain synchronization with Google Code issue IDs._"