Skip to content
Snippets Groups Projects
Commit c682f0a1 authored by Jan David Mol's avatar Jan David Mol
Browse files

bug 1362: bugfix when deleting entries from parset

parent f6ce9674
No related branches found
No related tags found
No related merge requests found
......@@ -198,7 +198,7 @@ class Parset(dict):
def __delitem__(self, key):
# avoid KeyErrors
if key in self: del self[key]
if key in self: dict.__delitem__(self,key)
def getBool(self, key):
return self[key] in ["T","t","1","Y","y",1,True]
......
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