File: python_interpreter.patch

package info (click to toggle)
ugene 52.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 133,376 kB
  • sloc: cpp: 747,593; xml: 212,891; ansic: 82,871; javascript: 5,416; yacc: 1,768; sh: 1,256; python: 771; perl: 226; makefile: 37
file content (20 lines) | stat: -rw-r--r-- 405 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
Description: using python3 as the interpreter
Author: Pierre Gruet <pgt@debian.org>
Forwarded: not-needed
Last-Update: 2023-12-12

--- a/data/snp_scripts/rsnp.py
+++ b/data/snp_scripts/rsnp.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 """
 #v_1.00
 """
@@ -112,4 +112,4 @@
     g.sendQuery()
 
 if __name__ == "__main__":
-    main()
\ No newline at end of file
+    main()