File: add_missing_shebang.patch

package info (click to toggle)
python-pybedtools 0.8.0-5
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 16,140 kB
  • sloc: python: 9,589; cpp: 899; makefile: 149; sh: 116
file content (21 lines) | stat: -rw-r--r-- 576 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Author: Andreas Tille <tille@debian.org>
Last-Update: Wed, 13 May 2020 08:56:48 +0200
Description: Add missing shebang lines

--- a/pybedtools/scripts/annotate.py
+++ b/pybedtools/scripts/annotate.py
@@ -1,3 +1,4 @@
+#!/usr/bin/python3
 """
 annotate a file with the neearest features in another.
 
--- a/pybedtools/scripts/examples/pbt_plotting_example.py
+++ b/pybedtools/scripts/examples/pbt_plotting_example.py
@@ -1,4 +1,6 @@
-from __future__ import print_function
+#!/usr/bin/python3
+
+# from __future__ import print_function
 import time
 import os
 import pybedtools