summaryrefslogtreecommitdiffstats
path: root/main.py
diff options
context:
space:
mode:
Diffstat (limited to 'main.py')
-rwxr-xr-xmain.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/main.py b/main.py
index 70ddeffa..31a18e18 100755
--- a/main.py
+++ b/main.py
@@ -28,7 +28,7 @@ import re
28import sys 28import sys
29 29
30from trace import SetTrace 30from trace import SetTrace
31from git_config import close_ssh 31from git_config import init_ssh, close_ssh
32from command import InteractiveCommand 32from command import InteractiveCommand
33from command import MirrorSafeCommand 33from command import MirrorSafeCommand
34from command import PagedCommand 34from command import PagedCommand
@@ -214,6 +214,7 @@ def _Main(argv):
214 repo = _Repo(opt.repodir) 214 repo = _Repo(opt.repodir)
215 try: 215 try:
216 try: 216 try:
217 init_ssh()
217 repo._Run(argv) 218 repo._Run(argv)
218 finally: 219 finally:
219 close_ssh() 220 close_ssh()