diff options
-rwxr-xr-x | scripts/csv2sto.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/csv2sto.py b/scripts/csv2sto.py index 381e2ae..5b571cf 100755 --- a/scripts/csv2sto.py +++ b/scripts/csv2sto.py @@ -28,7 +28,7 @@ def usage(): def main(): try: opts, args = getopt.getopt(sys.argv[1:], "fm:n:hT:") - except getopt.GetoptError, err: + except getopt.GetoptError as err: print(str(err)) usage() sys.exit(-1) |