Skip to content

Commit

Permalink
minor change: add spaces after commas
Browse files Browse the repository at this point in the history
  • Loading branch information
waldyrious committed Feb 17, 2013
1 parent 9607c46 commit 454e6ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions issues.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ def getIssueTitlePrefix(trackername):
return prefixes[trackername]

prefix = "[" + trackername + "]"
if not userVerify("Tracker '" + trackername + "' is unknown,"
if not userVerify("Tracker '" + trackername + "' is unknown, "
+ "I would use the prefix '" + prefix + "', ok?", False):

while True:
Expand All @@ -214,7 +214,7 @@ def getIssueTitlePrefix(trackername):
for tracker in trackers:
trackeritems = tracker.tracker_items('tracker_item', recursive=False)
trackername = tracker.description.string
print "Found tracker:", trackername, ",", len(trackeritems), "items"
print "Found tracker:", trackername, ", ", len(trackeritems), "items"
trackername = trackername.replace("Tracking System", "")
trackername = trackername.strip()

Expand Down

0 comments on commit 454e6ae

Please sign in to comment.