mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-21 02:05:16 +03:00
11 lines
331 B
Diff
11 lines
331 B
Diff
diff --git a/pyinclude.py b/pyinclude.py
|
|
index a7f0222..fdb59fe 100755
|
|
--- a/pyinclude.py
|
|
+++ b/pyinclude.py
|
|
@@ -14,5 +14,4 @@
|
|
import sys
|
|
import os
|
|
version = '.'.join(map(str, sys.version_info[:2]))
|
|
-print os.path.join(sys.prefix, 'include', 'python' + version)
|
|
-
|
|
+print(os.path.join(sys.prefix, 'include', 'python' + version))
|