From 584892dcdad885116e0c57080762c048286680de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20B=2E=20Brandenburg?= Date: Mon, 24 May 2010 23:22:11 -0400 Subject: plot.py: Provide progress info. --- plot.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'plot.py') diff --git a/plot.py b/plot.py index 6acd1ea..3317f54 100755 --- a/plot.py +++ b/plot.py @@ -356,7 +356,8 @@ class SchedPlotter(defapp.App): % bname) def default(self, _): - for datafile in self.args: + for i, datafile in enumerate(self.args): + self.out("[%d/%d] Processing %s ..." % (i + 1, len(self.args), datafile)) self.plot_file(datafile) if __name__ == "__main__": -- cgit v1.2.2