aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBjörn B. Brandenburg <bbb@cs.unc.edu>2010-05-24 23:22:11 -0400
committerBjörn B. Brandenburg <bbb@cs.unc.edu>2010-05-24 23:22:11 -0400
commit584892dcdad885116e0c57080762c048286680de (patch)
treee211b6043438599893ef79821a94a9c14392dedc
parent996ef00868169b6d32a18bac0ecac5274315b600 (diff)
plot.py: Provide progress info.
-rwxr-xr-xplot.py3
1 files changed, 2 insertions, 1 deletions
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):
356 % bname) 356 % bname)
357 357
358 def default(self, _): 358 def default(self, _):
359 for datafile in self.args: 359 for i, datafile in enumerate(self.args):
360 self.out("[%d/%d] Processing %s ..." % (i + 1, len(self.args), datafile))
360 self.plot_file(datafile) 361 self.plot_file(datafile)
361 362
362if __name__ == "__main__": 363if __name__ == "__main__":