From 162b52cc4d26648887c9377e627d1cb2def3a89e Mon Sep 17 00:00:00 2001 From: "Dr. Peter Poeml" Date: Thu, 29 Mar 2007 21:53:38 +0000 Subject: [PATCH] update: when updating multiple packages, print each package name --- osc/commandline.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/osc/commandline.py b/osc/commandline.py index 67051c1a..957c05b8 100755 --- a/osc/commandline.py +++ b/osc/commandline.py @@ -553,6 +553,8 @@ usage: osc up for p in pacs: + if len(pacs) > 1: + print "Updating %s" % p.name # save filelist and (modified) status before replacing the meta file saved_filenames = p.filenamelist saved_modifiedfiles = [ f for f in p.filenamelist if p.status(f) == 'M' ]