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()
|