fixed python3 incompatibility
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -19,6 +19,6 @@ CASPER_ARGS.extend(sys.argv[1:]) | ... | @@ -19,6 +19,6 @@ CASPER_ARGS.extend(sys.argv[1:]) |
19 | try: | 19 | try: |
20 | status = subprocess.call(CASPER_ARGS) | 20 | status = subprocess.call(CASPER_ARGS) |
21 | except KeyboardInterrupt: | 21 | except KeyboardInterrupt: |
22 | print '\nCasperJS interrupted, exiting.' | 22 | print('\nCasperJS interrupted, exiting.') |
23 | status = 0 | 23 | status = 0 |
24 | sys.exit(status) | 24 | sys.exit(status) | ... | ... |
-
Please register or sign in to post a comment