1
0
Fork 0
mirror of https://github.com/yweber/lodel2.git synced 2025-10-31 11:39:02 +01:00

Syntax error bugfix

This commit is contained in:
Yann 2017-01-05 17:18:15 +01:00
commit 0a93191207

View file

@ -168,7 +168,7 @@ to generic PluginVersion comparison function : '%s'" % cmp_fun_name)
if not cmpfun(
getattr(self, property_name),
getattr(other, property_name)):
if property_name == self.PROPERTY_LIST[-1]
if property_name == self.PROPERTY_LIST[-1]:
return False
return True