From 43419b7bbe36452a69008b4ddde90846168c4ff4 Mon Sep 17 00:00:00 2001 From: Keegan McAllister Date: Mon, 18 Mar 2013 18:15:52 -0400 Subject: [PATCH] humbug_git_config: Fix typo (imported from commit 37e92f9b9ab11ee3e64c5af579bd902aa251ffd1) --- bots/humbug_git_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bots/humbug_git_config.py b/bots/humbug_git_config.py index 869a31c..b304b62 100644 --- a/bots/humbug_git_config.py +++ b/bots/humbug_git_config.py @@ -23,7 +23,7 @@ HUMBUG_API_KEY = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" # * subject "deploy => master" (using a pretty unicode right arrow) # And similarly for branch "test-post-receive" (for use when testing). 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", subject = u"deploy \u21D2 %s" % (branch,))