From 684bb9a8c3ce46bfa1b7a7d119dbb909514c3cc0 Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Tue, 9 Aug 2011 18:42:35 -0400 Subject: [PATCH] fix --- bot/commands/git.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/commands/git.py b/bot/commands/git.py index 0d3a92d..23dde86 100644 --- a/bot/commands/git.py +++ b/bot/commands/git.py @@ -153,7 +153,7 @@ class Command(BaseCommand): changes = re.findall(regex, result)[0][0] try: cmnd_remt = "git config --get branch.{0}.remote".format(branch) - remote = self.exec_shell(cmnd_rmt) + remote = self.exec_shell(cmnd_remt) cmnd_url = "git config --get remote.{0}.url".format(remote) url = self.exec_shell(cmnd_url) msg = "done; {0} [from {1}].".format(changes, url)