summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
16ad223)
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>
# pop all patches
applied = crt_series.get_applied()
if len(applied) > 0:
# 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'
sys.stdout.flush()
crt_series.pop_patch(applied[0])
print 'done'