From 37cb746c56fc831c2db1d3a2867678a17520bf08 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Sat, 21 Aug 2010 14:40:03 -0400 Subject: [PATCH] Fix item -> items() bug in command_stack.py (now loaded curve playlist serialization works!) --- hooke/command_stack.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hooke/command_stack.py b/hooke/command_stack.py index 4d5cd01..319d354 100644 --- a/hooke/command_stack.py +++ b/hooke/command_stack.py @@ -226,7 +226,7 @@ class FileCommandStack (CommandStack): def __setstate__(self, state): self.name = self.path = None - for key,value in state.items: + for key,value in state.items(): setattr(self, key, value) self.set_path(state.get('path', None)) -- 2.26.2