Skip to content
Snippets Groups Projects
Commit 8b16e1b9 authored by Thomas Jürges's avatar Thomas Jürges
Browse files

SW-612: Correct a bug introduced by 2to3 conversion, version #2 from JD

parent 5f60519b
No related branches found
No related tags found
No related merge requests found
......@@ -48,7 +48,7 @@ class Parset(parameterset):
def subtractSubset(self, baseKey):
super(Parset, self).subtractSubset(baseKey)
self.keys = [False if key[:len(baseKey)] == baseKey else True for key in self.keys]
self.keys = [key for key in self.keys if (False if key[:len(baseKey)] == baseKey else True)]
#def makeSubset(self, baseKey, prefix=None):
#newps = Parset()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment