summaryrefslogtreecommitdiffstats
path: root/main.py
diff options
context:
space:
mode:
Diffstat (limited to 'main.py')
-rwxr-xr-xmain.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.py b/main.py
index 5c546e82..35023d52 100755
--- a/main.py
+++ b/main.py
@@ -45,7 +45,7 @@ except ImportError:
45 45
46from color import SetDefaultColoring 46from color import SetDefaultColoring
47import event_log 47import event_log
48from trace import SetTrace 48from repo_trace import SetTrace
49from git_command import git, GitCommand 49from git_command import git, GitCommand
50from git_config import init_ssh, close_ssh 50from git_config import init_ssh, close_ssh
51from command import InteractiveCommand 51from command import InteractiveCommand
@@ -84,7 +84,7 @@ global_options.add_option('--color',
84 help='control color usage: auto, always, never') 84 help='control color usage: auto, always, never')
85global_options.add_option('--trace', 85global_options.add_option('--trace',
86 dest='trace', action='store_true', 86 dest='trace', action='store_true',
87 help='trace git command execution') 87 help='trace git command execution (REPO_TRACE=1)')
88global_options.add_option('--time', 88global_options.add_option('--time',
89 dest='time', action='store_true', 89 dest='time', action='store_true',
90 help='time repo command execution') 90 help='time repo command execution')