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 | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/stgit/commands/pull.py b/stgit/commands/pull.py index 25832a5..843b579 100644 --- 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' - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.htmlReceived on Mon Jan 30 05:09:29 2006
This archive was generated by hypermail 2.1.8 : 2006-01-30 05:09:38 EST