[gedit-plugins/wip/python3] Fix multiedit



commit 13521e92d8021f30af7e2823dc3563535c668bce
Author: Ignacio Casal Quinteiro <icq gnome org>
Date:   Mon Nov 5 20:27:43 2012 +0100

    Fix multiedit

 plugins/multiedit/multiedit/documenthelper.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/plugins/multiedit/multiedit/documenthelper.py b/plugins/multiedit/multiedit/documenthelper.py
index e15b912..846c026 100644
--- a/plugins/multiedit/multiedit/documenthelper.py
+++ b/plugins/multiedit/multiedit/documenthelper.py
@@ -161,7 +161,7 @@ class DocumentHelper(Signals):
         ]
 
         for handler in self._event_handlers:
-            handler[0] = map(lambda x: Gdk.keyval_from_name(x), handler[0])
+            handler[0] = list(map(lambda x: Gdk.keyval_from_name(x), handler[0]))
 
     def disable_multi_edit(self):
         if self._column_mode:



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]