From c2e3666eac52bf6e383ac5a90c5a9b367c66783c Mon Sep 17 00:00:00 2001 From: Rasmus Wriedt Larsen 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 a473ce66aa..8be77eb1bc 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