Skip to content

Commit

Permalink
Merge branch 'develop' into task-merge
Browse files Browse the repository at this point in the history
  • Loading branch information
kostajh committed Apr 11, 2013
2 parents 6010caa + ba6dce5 commit fbb7941
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bugwarrior/services/activecollab3.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def get_project_slug(self, project_name):
# string in project slug format: "client-example-project"
project_name = project_name.lower()
project_name = re.sub('[\s+]', '-', project_name)
project_name = re.sub('[:]', '', project_name)
project_name = re.sub('[:,"/"]', '', project_name)
return project_name

# Return a priority of L, M, or H based on AC's priority index of -2 to 2
Expand Down

0 comments on commit fbb7941

Please sign in to comment.