From 1a5daaa5e9072ed67200c31b327910e752c530e8 2013-01-23 11:09:39 From: Thomas Kluyver Date: 2013-01-23 11:09:39 Subject: [PATCH] Fix SyntaxError --- diff --git a/IPython/parallel/controller/dictdb.py b/IPython/parallel/controller/dictdb.py index 7196221..a2c585c 100644 --- a/IPython/parallel/controller/dictdb.py +++ b/IPython/parallel/controller/dictdb.py @@ -265,7 +265,7 @@ class DictDB(BaseDB): def get_history(self): """get all msg_ids, ordered by time submitted.""" - msg_ids = self._records.keys(): + msg_ids = self._records.keys() # Remove any that do not have a submitted timestamp. # This is extremely unlikely to happen, # but it seems to come up in some tests on VMs.