File: 0004-add-shebang-examples.patch

package info (click to toggle)
pyx3 0.16-3
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 3,884 kB
  • sloc: python: 22,065; ansic: 130; makefile: 84; sh: 8
file content (18 lines) | stat: -rw-r--r-- 451 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
From: Stuart Prescott <stuart@debian.org>
Date: Fri, 7 Nov 2025 13:48:32 +1100
Subject: add missing shebang to example

---
 examples/graphs/join.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/examples/graphs/join.py b/examples/graphs/join.py
index bcd2d50..059b963 100755
--- a/examples/graphs/join.py
+++ b/examples/graphs/join.py
@@ -1,3 +1,5 @@
+#!/usr/bin/python3
+
 from pyx import *
 
 g = graph.graphxy(width=8, key=graph.key.key())