We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66345a2 commit 7d6ad23Copy full SHA for 7d6ad23
scent.py
@@ -1,3 +1,4 @@
1
+from __future__ import unicode_literals
2
3
import os
4
import termstyle
@@ -27,8 +28,7 @@ def execute_nose(*args):
27
28
return main()
29
except SystemExit as x:
30
if x.message:
- print "Found error {0}: {1}".format(x.code, x.message)
31
+ print("Found error {0}: {1}".format(x.code, x.message))
32
return not x.code
33
else:
34
return 1
-
0 commit comments