You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In een python 2.7 omgeving crasht het schrijven van de ducobox config ini file omdat self.blacklist een boolean type is , terwijl de configparser set functie op lijn 229 een string verwacht.
cfgparser.set(section, 'blacklist', self.blacklist)
vervangen door cfgparser.set(section, 'blacklist', str(self.blacklist))
fixt dit voor python2.7
The text was updated successfully, but these errors were encountered:
In een python 2.7 omgeving crasht het schrijven van de ducobox config ini file omdat self.blacklist een boolean type is , terwijl de configparser set functie op lijn 229 een string verwacht.
cfgparser.set(section, 'blacklist', self.blacklist)
vervangen door
cfgparser.set(section, 'blacklist', str(self.blacklist))
fixt dit voor python2.7
The text was updated successfully, but these errors were encountered: