diff options
Diffstat (limited to 'main.py')
-rwxr-xr-x | main.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -27,7 +27,7 @@ import os | |||
27 | import re | 27 | import re |
28 | import sys | 28 | import sys |
29 | 29 | ||
30 | import git_command | 30 | from trace import SetTrace |
31 | from command import InteractiveCommand | 31 | from command import InteractiveCommand |
32 | from command import MirrorSafeCommand | 32 | from command import MirrorSafeCommand |
33 | from command import PagedCommand | 33 | from command import PagedCommand |
@@ -79,7 +79,7 @@ class _Repo(object): | |||
79 | gopts, gargs = global_options.parse_args(glob) | 79 | gopts, gargs = global_options.parse_args(glob) |
80 | 80 | ||
81 | if gopts.trace: | 81 | if gopts.trace: |
82 | git_command.TRACE = True | 82 | SetTrace() |
83 | if gopts.show_version: | 83 | if gopts.show_version: |
84 | if name == 'help': | 84 | if name == 'help': |
85 | name = 'version' | 85 | name = 'version' |