1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
From 5212e71ea4e0e71e94ced21931422f87d3d00e5e Mon Sep 17 00:00:00 2001
From: Stefano Rivera <stefanor@debian.org>
Date: Fri, 9 Oct 2015 22:23:56 +0200
Subject: Use /usr/bin/python3 in the shebang.
Bug-Debian: #663228
Forwarded: not-needed
Last-Update: 2014-06-02
Patch-Name: system-python.patch
---
scripts/virtualenv | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/virtualenv b/scripts/virtualenv
index c961dd7..418bd79 100644
--- a/scripts/virtualenv
+++ b/scripts/virtualenv
@@ -1,3 +1,3 @@
-#!/usr/bin/env python
+#!/usr/bin/python3
import virtualenv
virtualenv.main()
|