aboutsummaryrefslogtreecommitdiffstats
path: root/configure.py
diff options
context:
space:
mode:
authorSimon Warta <[email protected]>2017-03-08 23:33:17 +0100
committerSimon Warta <[email protected]>2017-03-08 23:33:34 +0100
commit159b5b36d43f82c6a47eb0e752d9edd22ac0f08c (patch)
treecad4e8b20b81e3901365c4dcce34ae41d33c7ab4 /configure.py
parent9961e475f10a671a8e25080958d26c8c356057ef (diff)
pylint: make _so_link_search() a @staticmethod
because self is not needed
Diffstat (limited to 'configure.py')
-rwxr-xr-xconfigure.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.py b/configure.py
index 7e40545dd..c47b8b782 100755
--- a/configure.py
+++ b/configure.py
@@ -1067,7 +1067,8 @@ class CompilerInfo(InfoObject):
return (' '.join(gen_flags())).strip()
- def _so_link_search(self, osname, debug_info):
+ @staticmethod
+ def _so_link_search(osname, debug_info):
if debug_info:
return [osname + '-debug', 'default-debug']
else: