chiark / gitweb /
"stg pull" says "popping all patches" even when it doesn't
authorChuck Lever <cel@netapp.com>
Sun, 29 Jan 2006 18:08:36 +0000 (13:08 -0500)
committerCatalin 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

index 25832a5add0e51200fa82adae7e2058fc4c79213..843b579ae14da7fc0bdeebe0f6cdfa5068e49a04 100644 (file)
@@ -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'