Are you sure you are looking at the latest version from bzr?

You already sent a patch for this, and currently the code looks like this:

            # Set correspondence so as not to erase previous data.
            self.correspondence = {}
            for key in self.card_type.fact_keys():
                self.correspondence[key] = key

Peter

On 11/19/2012 06:04 PM, Tom Cato Amundsen wrote:
Please add this patch so the program runs on Pyhton 2.6. List
comprehension was added for Python 2.7

Tom Cato

--- add_cards_dlg.py.orig    2012-11-19 17:55:53.710649005 +0100
+++ add_cards_dlg.py    2012-11-19 17:58:56.474647719 +0100
@@ -143,8 +143,7 @@
              self.correspondence, check_required_fact_keys=False,
parent=self)
          if dlg.exec_() != QtGui.QDialog.Accepted:
              # Set correspondence so as not to erase previous data.
-            self.correspondence = {key: key \
-                for key in self.card_type.fact_keys()}
+            self.correspondence = dict((key, key) for key in
self.card_type.fact_keys())
              self.card_types_widget.setCurrentIndex(self.card_type_index)
              return
          else:


--
Tom Cato Amundsen <[email protected] <mailto:[email protected]>> http://www.solfege.org/
GNU Solfege - free ear training http://www.gnu.org/software/solfege/

--
You received this message because you are subscribed to the Google
Groups "mnemosyne-proj-users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit https://groups.google.com/groups/opt_out.



--
Peter Bienstman
Ghent University, Dept. of Information Technology
Sint-Pietersnieuwstraat 41, B-9000 Gent, Belgium
tel: +32 9 264 34 46, fax: +32 9 264 35 93
WWW: http://photonics.intec.UGent.be
email: [email protected]

--
You received this message because you are subscribed to the Google Groups 
"mnemosyne-proj-users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to