tools: Fix bare except clause.

This commit is contained in:
Tommy Ip 2017-01-08 15:25:24 +00:00 committed by Tim Abbott
parent f3b5683e77
commit e04afe9bda
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ can find more advanced tools for showing profiler results.
try:
fn = sys.argv[1]
except:
except IndexError:
print('''
Please supply a filename. (If you use the profiled decorator,
the file will have a suffix of ".profile".)