summaryrefslogtreecommitdiffstats
path: root/main.py
diff options
context:
space:
mode:
Diffstat (limited to 'main.py')
-rwxr-xr-xmain.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/main.py b/main.py
index ebce9b73..a4cf4304 100755
--- a/main.py
+++ b/main.py
@@ -36,6 +36,7 @@ from git_config import init_ssh, close_ssh
36from command import InteractiveCommand 36from command import InteractiveCommand
37from command import MirrorSafeCommand 37from command import MirrorSafeCommand
38from command import PagedCommand 38from command import PagedCommand
39from subcmds.version import Version
39from editor import Editor 40from editor import Editor
40from error import DownloadError 41from error import DownloadError
41from error import ManifestInvalidRevisionError 42from error import ManifestInvalidRevisionError
@@ -334,6 +335,9 @@ def _Main(argv):
334 _CheckWrapperVersion(opt.wrapper_version, opt.wrapper_path) 335 _CheckWrapperVersion(opt.wrapper_version, opt.wrapper_path)
335 _CheckRepoDir(opt.repodir) 336 _CheckRepoDir(opt.repodir)
336 337
338 Version.wrapper_version = opt.wrapper_version
339 Version.wrapper_path = opt.wrapper_path
340
337 repo = _Repo(opt.repodir) 341 repo = _Repo(opt.repodir)
338 try: 342 try:
339 try: 343 try: