chiark
/
gitweb
/
~mdw
/
stgit
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
16ad223
)
"stg pull" says "popping all patches" even when it doesn't
author
Chuck Lever
<cel@netapp.com>
Sun, 29 Jan 2006 18:08:36 +0000
(13:08 -0500)
committer
Catalin Marinas
<catalin.marinas@gmail.com>
Sat, 4 Feb 2006 09:32:09 +0000
(09:32 +0000)
Running "stg pull" says it pops all patches, but it really means it is
popping all *applied* patches. Change the informational message to match
the behavior.
Signed-off-by: Chuck Lever <cel@netapp.com>
stgit/commands/pull.py
patch
|
blob
|
blame
|
history
diff --git
a/stgit/commands/pull.py
b/stgit/commands/pull.py
index 25832a5add0e51200fa82adae7e2058fc4c79213..843b579ae14da7fc0bdeebe0f6cdfa5068e49a04 100644
(file)
--- a/
stgit/commands/pull.py
+++ b/
stgit/commands/pull.py
@@
-64,7
+64,7
@@
def func(parser, options, args):
# pop all patches
applied = crt_series.get_applied()
if len(applied) > 0:
- print 'Popping all patches...',
+ print 'Popping all
applied
patches...',
sys.stdout.flush()
crt_series.pop_patch(applied[0])
print 'done'