File: system-python.patch

package info (click to toggle)
python-virtualenv 15.1.0%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 744 kB
  • ctags: 551
  • sloc: python: 2,781; sh: 158; makefile: 126; csh: 17
file content (23 lines) | stat: -rw-r--r-- 606 bytes parent folder | download | duplicates (2)
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()