humbug_git_config: Fix typo

(imported from commit 37e92f9b9ab11ee3e64c5af579bd902aa251ffd1)
This commit is contained in:
Keegan McAllister 2013-03-18 18:15:52 -04:00
parent b699d2f1b2
commit 43419b7bbe

View file

@ -23,7 +23,7 @@ HUMBUG_API_KEY = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
# * subject "deploy => master" (using a pretty unicode right arrow) # * subject "deploy => master" (using a pretty unicode right arrow)
# And similarly for branch "test-post-receive" (for use when testing). # And similarly for branch "test-post-receive" (for use when testing).
def commit_notice_destination(repo, branch, commit): def commit_notice_destination(repo, branch, commit):
if branch in ["master", "prod", "post-receive-test"]: if branch in ["master", "prod", "test-post-receive"]:
return dict(stream = "commits", return dict(stream = "commits",
subject = u"deploy \u21D2 %s" % (branch,)) subject = u"deploy \u21D2 %s" % (branch,))