File: 1001_shebang.patch

package info (click to toggle)
khal 1%3A0.13.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,596 kB
  • sloc: python: 13,303; makefile: 191; awk: 33; sh: 1
file content (21 lines) | stat: -rw-r--r-- 486 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Description: use python3 in executables
Author: Jonas Smedegaard <dr@jones.dk>
Last-Update: 2021-09-17
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/bin/ikhal
+++ b/bin/ikhal
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 from khal.cli import main_ikhal
 
 if __name__ == "__main__":
--- a/bin/khal
+++ b/bin/khal
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 from khal.cli import main_khal
 
 if __name__ == "__main__":