summaryrefslogtreecommitdiffstats
path: root/debian/patches/0003-Use-python3-shebang-on-examples.patch
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2022-09-16 14:20:52 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2022-09-16 14:20:52 +0000
commita15f7aad5df29a780dde442155e29b940f671ce2 (patch)
tree3407ec30be7c0d96792f883acba0786b40bc04ca /debian/patches/0003-Use-python3-shebang-on-examples.patch
parentRediffing Avoid-writing-bytes-to-stdout.patch. (diff)
downloadterminaltables-a15f7aad5df29a780dde442155e29b940f671ce2.tar.xz
terminaltables-a15f7aad5df29a780dde442155e29b940f671ce2.zip
Renumbering patches.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/patches/0003-Use-python3-shebang-on-examples.patch')
-rw-r--r--debian/patches/0003-Use-python3-shebang-on-examples.patch30
1 files changed, 0 insertions, 30 deletions
diff --git a/debian/patches/0003-Use-python3-shebang-on-examples.patch b/debian/patches/0003-Use-python3-shebang-on-examples.patch
deleted file mode 100644
index 8805031..0000000
--- a/debian/patches/0003-Use-python3-shebang-on-examples.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-Author: Carl Suster <carl@contraflo.ws>
-Description: Use python3 shebang on examples.
-
-diff -Naurp terminaltables.orig/example1.py terminaltables/example1.py
---- terminaltables.orig/example1.py
-+++ terminaltables/example1.py
-@@ -1,4 +1,4 @@
--#!/usr/bin/env python
-+#!/usr/bin/python3
- """Simple example usage of terminaltables without any other dependencies.
-
- Just prints sample text and exits.
-diff -Naurp terminaltables.orig/example2.py terminaltables/example2.py
---- terminaltables.orig/example2.py
-+++ terminaltables/example2.py
-@@ -1,4 +1,4 @@
--#!/usr/bin/env python
-+#!/usr/bin/python3
- """Example usage of terminaltables with colorclass.
-
- Just prints sample text and exits.
-diff -Naurp terminaltables.orig/example3.py terminaltables/example3.py
---- terminaltables.orig/example3.py
-+++ terminaltables/example3.py
-@@ -1,4 +1,4 @@
--#!/usr/bin/env python
-+#!/usr/bin/python3
- """Simple example usage of terminaltables and column_max_width().
-
- Just prints sample text and exits.