Skip to content

Commit

Permalink
Fixed a string formatting error.
Browse files Browse the repository at this point in the history
  • Loading branch information
dnschnur committed Sep 27, 2012
1 parent 567dc06 commit 1cb904a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion migrateissues.py
Expand Up @@ -208,6 +208,7 @@ def process_gcode_issues(existing_issues):
break break


for issue in issues_feed.entry: for issue in issues_feed.entry:

gid = parse_gcode_id(issue.id.text) gid = parse_gcode_id(issue.id.text)


# If we're trying to do a complete migration to a fresh Github project, and # If we're trying to do a complete migration to a fresh Github project, and
Expand All @@ -217,7 +218,7 @@ def process_gcode_issues(existing_issues):


if options.synchronize_ids and previous_gid + 1 < gid: if options.synchronize_ids and previous_gid + 1 < gid:
while 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) title = "Google Code skipped issue %d" % (previous_gid + 1)
if title not in existing_issues: if title not in existing_issues:
body = "_Skipping this issue number to maintain synchronization with Google Code issue IDs._" body = "_Skipping this issue number to maintain synchronization with Google Code issue IDs._"
Expand Down

0 comments on commit 1cb904a

Please sign in to comment.