diff options
Diffstat (limited to 'subcmds/abandon.py')
-rw-r--r-- | subcmds/abandon.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/subcmds/abandon.py b/subcmds/abandon.py index 9a645c0a..f3478129 100644 --- a/subcmds/abandon.py +++ b/subcmds/abandon.py | |||
@@ -21,6 +21,7 @@ from collections import defaultdict | |||
21 | from git_command import git | 21 | from git_command import git |
22 | from progress import Progress | 22 | from progress import Progress |
23 | 23 | ||
24 | |||
24 | class Abandon(Command): | 25 | class Abandon(Command): |
25 | common = True | 26 | common = True |
26 | helpSummary = "Permanently abandon a development branch" | 27 | helpSummary = "Permanently abandon a development branch" |
@@ -32,6 +33,7 @@ deleting it (and all its history) from your local repository. | |||
32 | 33 | ||
33 | It is equivalent to "git branch -D <branchname>". | 34 | It is equivalent to "git branch -D <branchname>". |
34 | """ | 35 | """ |
36 | |||
35 | def _Options(self, p): | 37 | def _Options(self, p): |
36 | p.add_option('--all', | 38 | p.add_option('--all', |
37 | dest='all', action='store_true', | 39 | dest='all', action='store_true', |