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 1def87c commit 8dce1a6Copy full SHA for 8dce1a6
futurize.py
@@ -17,11 +17,8 @@
17
The software is distributed under an MIT licence. See LICENSE.txt.
18
"""
19
20
-import os
+import sys
21
22
from libfuturize.main import main
23
24
-# We use os._exit() because sys.exit() seems to interact badly with
25
-# subprocess.check_output() ...
26
-os._exit(main())
27
-
+sys.exit(main())
pasteurize.py
@@ -16,11 +16,8 @@
16
from libpasteurize.main import main
0 commit comments