Navigation Menu

Skip to content

Commit

Permalink
Builder|Fixed: Don't mistake :: for a tag separator
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Apr 8, 2012
1 parent 32a2a6f commit 299f751
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions distrib/builder/changes.py
Expand Up @@ -40,8 +40,8 @@ def set_subject(self, subject):
subject = subject[8:-1]

# Remote tags from the subject.
pos = subject.find(':')
if subject[pos + 1] in string.whitespace:
pos = subject.find(': ')
if pos > 0:
for tag in subject[:pos].split('|'):
self.tags.append(tag.strip())
subject = subject[pos + 1:].strip()
Expand Down

0 comments on commit 299f751

Please sign in to comment.