From b8107301d238fd9af508eb785e8c9ba6facb0259 Mon Sep 17 00:00:00 2001 From: Rasmus Wriedt Larsen <rasmuswl@github.com> Date: Thu, 15 Dec 2022 15:36:43 +0100 Subject: [PATCH] python-setup: Fix for python2 --- python-setup/find_site_packages.py | 1 + 1 file changed, 1 insertion(+) diff --git a/python-setup/find_site_packages.py b/python-setup/find_site_packages.py index a473ce66a..8be77eb1b 100644 --- a/python-setup/find_site_packages.py +++ b/python-setup/find_site_packages.py @@ -1,6 +1,7 @@ """ Print the path to the site-packages directory for the current Python environment. """ +from __future__ import print_function try: import pip