aboutsummaryrefslogtreecommitdiffstats
path: root/plot.py
diff options
context:
space:
mode:
Diffstat (limited to 'plot.py')
-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__":