Py3: fix saving sketch while in edit mode

This commit is contained in:
wmayer
2019-01-09 18:29:11 +01:00
parent 5a1c43b131
commit 3f9549868d

View File

@@ -223,7 +223,7 @@ class TempoVis(FrozenClass):
self.restore()
def __getstate__(self):
return (self.data.items(),
return (list(self.data.items()),
self.cam_string,
self.restore_on_delete)