File: python3.patch

package info (click to toggle)
stdeb 0.10.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 824 kB
  • sloc: python: 2,149; sh: 191; makefile: 20
file content (43 lines) | stat: -rw-r--r-- 950 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
From: Andreas Henriksson <andreas@fatal.se>
Date: Fri, 29 Jan 2021 23:36:48 +0100
Subject: python3

---
 scripts/py2dsc        | 2 +-
 scripts/py2dsc-deb    | 2 +-
 scripts/pypi-download | 2 +-
 scripts/pypi-install  | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

--- a/scripts/py2dsc
+++ b/scripts/py2dsc
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 import stdeb.cli_runner
 import sys
--- a/scripts/py2dsc-deb
+++ b/scripts/py2dsc-deb
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 import stdeb.cli_runner
 import sys
--- a/scripts/pypi-download
+++ b/scripts/pypi-download
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 import sys
 from optparse import OptionParser
 from stdeb.downloader import myprint, get_source_tarball
--- a/scripts/pypi-install
+++ b/scripts/pypi-install
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 import os
 import shutil
 import sys