aboutsummaryrefslogtreecommitdiffstats
path: root/community/deluge/10-python38-logging.patch
diff options
context:
space:
mode:
Diffstat (limited to 'community/deluge/10-python38-logging.patch')
-rw-r--r--community/deluge/10-python38-logging.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/community/deluge/10-python38-logging.patch b/community/deluge/10-python38-logging.patch
deleted file mode 100644
index a3c9ad4e99f..00000000000
--- a/community/deluge/10-python38-logging.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-https://dev.deluge-torrent.org/changeset/351664ec071daa04
-Slated for 2.0.4 release
-diff --git a/deluge/log.py b/deluge/log.py
-index 75e8308b5..0f9877fdb 100644
---- a/deluge/log.py
-+++ b/deluge/log.py
-@@ -86,7 +86,7 @@ def critical(self, msg, *args, **kwargs):
- def exception(self, msg, *args, **kwargs):
- yield LoggingLoggerClass.exception(self, msg, *args, **kwargs)
-
-- def findCaller(self, stack_info=False): # NOQA: N802
-+ def findCaller(self, *args, **kwargs): # NOQA: N802
- f = logging.currentframe().f_back
- rv = '(unknown file)', 0, '(unknown function)'
- while hasattr(f, 'f_code'):