File: examples-Use-python3-within-shebang-line.patch

package info (click to toggle)
strawberry-graphql-django 0.62.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,968 kB
  • sloc: python: 27,530; sh: 17; makefile: 16
file content (18 lines) | stat: -rw-r--r-- 526 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
From: Carsten Schoenert <c.schoenert@t-online.de>
Date: Mon, 14 Jul 2025 23:32:42 +0200
Subject: examples: Use python3 within shebang line

---
 examples/django/manage.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/examples/django/manage.py b/examples/django/manage.py
index 972e5c4..9615139 100755
--- a/examples/django/manage.py
+++ b/examples/django/manage.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 """Django's command-line utility for administrative tasks."""
 
 import os