changeset 6647:fb7f38e22730

bin: fix __eq__ of bin/base.py RcConf __eq__ without parameter makes no sense - found by pylint. (The method is thus apparently unused and could be removed completely together with other RcConf code.)
author domruf <dominikruf@gmail.com>
date Wed, 10 May 2017 22:58:06 +0200
parents 1e4aaf9a58a6
children 4188b49af031
files kallithea/bin/base.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/kallithea/bin/base.py	Wed May 10 22:42:37 2017 +0200
+++ b/kallithea/bin/base.py	Wed May 10 22:58:06 2017 +0200
@@ -111,8 +111,8 @@
             return True
         return False
 
-    def __eq__(self):
-        return self._conf.__eq__()
+    def __eq__(self, other):
+        return self._conf.__eq__(other)
 
     def __repr__(self):
         return 'RcConf<%s>' % self._conf.__repr__()