diff options
Diffstat (limited to 'subcmds/gitc_delete.py')
-rw-r--r-- | subcmds/gitc_delete.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/subcmds/gitc_delete.py b/subcmds/gitc_delete.py index 56e0eaba..df749469 100644 --- a/subcmds/gitc_delete.py +++ b/subcmds/gitc_delete.py | |||
@@ -19,7 +19,7 @@ import platform_utils | |||
19 | 19 | ||
20 | 20 | ||
21 | class GitcDelete(Command, GitcClientCommand): | 21 | class GitcDelete(Command, GitcClientCommand): |
22 | common = True | 22 | COMMON = True |
23 | visible_everywhere = False | 23 | visible_everywhere = False |
24 | helpSummary = "Delete a GITC Client." | 24 | helpSummary = "Delete a GITC Client." |
25 | helpUsage = """ | 25 | helpUsage = """ |
@@ -33,7 +33,7 @@ and all locally downloaded sources. | |||
33 | def _Options(self, p): | 33 | def _Options(self, p): |
34 | p.add_option('-f', '--force', | 34 | p.add_option('-f', '--force', |
35 | dest='force', action='store_true', | 35 | dest='force', action='store_true', |
36 | help='Force the deletion (no prompt).') | 36 | help='force the deletion (no prompt)') |
37 | 37 | ||
38 | def Execute(self, opt, args): | 38 | def Execute(self, opt, args): |
39 | if not opt.force: | 39 | if not opt.force: |