Skip to content

Commit

Permalink
Fix infinite loop when re-adding dummy issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
dnschnur committed Sep 28, 2012
1 parent 2a4e1c9 commit 4e05752
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion migrateissues.py
Expand Up @@ -264,7 +264,7 @@ def process_gcode_issues(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._"
github_issue = github_repo.create_issue(title, body = body, labels = [github_label("imported")]) github_issue = github_repo.create_issue(title, body = body, labels = [github_label("imported")])
github_issue.edit(state = "closed") github_issue.edit(state = "closed")
previous_gid += 1 previous_gid += 1


# Add the issue and its comments to Github, if we haven't already # Add the issue and its comments to Github, if we haven't already


Expand Down

0 comments on commit 4e05752

Please sign in to comment.