summarylogtreecommitdiffstats
path: root/python38.patch
diff options
context:
space:
mode:
authorLibor Wagner2020-05-21 10:54:27 +0200
committerGitHub2020-05-21 04:54:27 -0400
commitcd0f6b6930b211ff371391afe54dd98a9fb5b8ef (patch)
tree6de83b5bbf7561b6777047803fe95d48d6d6c783 /python38.patch
parent1c5d6a6d6bcda550bb17cc643d7d8365b9bc25d0 (diff)
downloadaur-cd0f6b6930b211ff371391afe54dd98a9fb5b8ef.tar.gz
Fixing build problems (#2)
Co-authored-by: Libor Wagner <libor.wagner@cvut.cz>
Diffstat (limited to 'python38.patch')
-rw-r--r--python38.patch17
1 files changed, 0 insertions, 17 deletions
diff --git a/python38.patch b/python38.patch
deleted file mode 100644
index 932af17380f2..000000000000
--- a/python38.patch
+++ /dev/null
@@ -1,17 +0,0 @@
---- a/tools/rosgraph/src/rosgraph/roslogging.py
-+++ b/tools/rosgraph/src/rosgraph/roslogging.py
-@@ -49,12 +49,12 @@ from rospkg.environment import ROS_LOG_DIR
- class LoggingException(Exception): pass
-
- class RospyLogger(logging.getLoggerClass()):
-- def findCaller(self, dummy=False): # Dummy second arg to match Python3 function declaration
-+ def findCaller(self, *args, **kwargs):
- """
- Find the stack frame of the caller so that we can note the source
- file name, line number, and function name with class name if possible.
- """
-- file_name, lineno, func_name = super(RospyLogger, self).findCaller()[:3]
-+ file_name, lineno, func_name = super(RospyLogger, self).findCaller(*args, **kwargs)[:3]
-
- f = inspect.currentframe()
- if f is not None: