Browse Source

fix

tags/v0.1^2
Ben Kurtovic 13 years ago
parent
commit
684bb9a8c3
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      bot/commands/git.py

+ 1
- 1
bot/commands/git.py View File

@@ -153,7 +153,7 @@ class Command(BaseCommand):
changes = re.findall(regex, result)[0][0] changes = re.findall(regex, result)[0][0]
try: try:
cmnd_remt = "git config --get branch.{0}.remote".format(branch) 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) cmnd_url = "git config --get remote.{0}.url".format(remote)
url = self.exec_shell(cmnd_url) url = self.exec_shell(cmnd_url)
msg = "done; {0} [from {1}].".format(changes, url) msg = "done; {0} [from {1}].".format(changes, url)


Loading…
Cancel
Save