summaryrefslogtreecommitdiff
path: root/games-misc/ponysay/files/ponysay-py38.patch
diff options
context:
space:
mode:
authordakkar <dakkar@thenautilus.net>2023-03-12 21:39:38 +0000
committerdakkar <dakkar@thenautilus.net>2023-03-12 21:39:38 +0000
commit8e8bf439efa7d7962503ea52626ace8e27bbdc7e (patch)
treeacf64a36cb6012bc25e12176fd34a690a5862103 /games-misc/ponysay/files/ponysay-py38.patch
parentfvwm 2.7.0 with fixed patches (diff)
downloadgentoo-overlay-8e8bf439efa7d7962503ea52626ace8e27bbdc7e.tar.gz
gentoo-overlay-8e8bf439efa7d7962503ea52626ace8e27bbdc7e.tar.bz2
gentoo-overlay-8e8bf439efa7d7962503ea52626ace8e27bbdc7e.zip
remove my ponysay
portage version works
Diffstat (limited to 'games-misc/ponysay/files/ponysay-py38.patch')
-rw-r--r--games-misc/ponysay/files/ponysay-py38.patch33
1 files changed, 0 insertions, 33 deletions
diff --git a/games-misc/ponysay/files/ponysay-py38.patch b/games-misc/ponysay/files/ponysay-py38.patch
deleted file mode 100644
index 6f9fee1..0000000
--- a/games-misc/ponysay/files/ponysay-py38.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-From 69c23e3ae1e1e9e9f1ee3a06a706d755a4b1de48 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?M=C3=93ZES=20=C3=81d=C3=A1m=20Istv=C3=A1n?=
- <mozes.adam.istvan@pm.me>
-Date: Sat, 16 Nov 2019 09:58:28 +0100
-Subject: [PATCH] fix: do not compare literal with "is not"
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-Python3.8 issued the following warning on each ponysay invocation:
-
-/bin/ponysay/backend.py:294: SyntaxWarning: "is not" with a literal. Did you mean "!="?
-
-This has been corrected here.
-
-Signed-off-by: MÓZES Ádám István <mozes.adam.istvan@pm.me>
----
- src/backend.py | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/backend.py b/src/backend.py
-index 2cc539a5..82ff1496 100644
---- a/src/backend.py
-+++ b/src/backend.py
-@@ -291,7 +291,7 @@ def __processPony(self):
- props = dollar[7:]
- if len(props) > 0:
- if ',' in props:
-- if props[0] is not ',':
-+ if props[0] != ',':
- w = props[:props.index(',')]
- h = int(props[props.index(',') + 1:])
- else: