[Python-modules-commits] r23600 - in packages/ipython/trunk/debian (3 files)
jtaylor-guest at users.alioth.debian.org
jtaylor-guest at users.alioth.debian.org
Tue Feb 26 18:06:51 UTC 2013
Date: Tuesday, February 26, 2013 @ 18:06:47
Author: jtaylor-guest
Revision: 23600
Added-missing-quotes.patch: fix missing quotes
Added:
packages/ipython/trunk/debian/patches/Added-missing-quotes.patch
Modified:
packages/ipython/trunk/debian/changelog
packages/ipython/trunk/debian/patches/series
Modified: packages/ipython/trunk/debian/changelog
===================================================================
--- packages/ipython/trunk/debian/changelog 2013-02-26 14:20:34 UTC (rev 23599)
+++ packages/ipython/trunk/debian/changelog 2013-02-26 18:06:47 UTC (rev 23600)
@@ -11,6 +11,7 @@
* don't install tests for notebook and qtconsole
* bump standard to 3.9.4, no changes required
* add autopkgtests
+ * Added-missing-quotes.patch: fix missing quotes
-- Julian Taylor <jtaylor.debian at googlemail.com> Sat, 02 Feb 2013 11:14:27 +0100
Added: packages/ipython/trunk/debian/patches/Added-missing-quotes.patch
===================================================================
--- packages/ipython/trunk/debian/patches/Added-missing-quotes.patch (rev 0)
+++ packages/ipython/trunk/debian/patches/Added-missing-quotes.patch 2013-02-26 18:06:47 UTC (rev 23600)
@@ -0,0 +1,19 @@
+Description: Added missing quotes.
+Author: David Hirschfeld <david.hirschfeld at gazprom-mt.com>
+Origin: 7fadfdad2abd2865df7727de3c4e3176b43932cf
+
+---
+ IPython/parallel/client/client.py | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+--- a/IPython/parallel/client/client.py
++++ b/IPython/parallel/client/client.py
+@@ -1550,7 +1550,7 @@ class Client(HasTraits):
+ elif header['msg_type'] == 'execute_reply':
+ res = ExecuteReply(msg_id, rcontent, md)
+ else:
+- raise KeyError("unhandled msg type: %r" % header[msg_type])
++ raise KeyError("unhandled msg type: %r" % header['msg_type'])
+ else:
+ res = self._unwrap_exception(rcontent)
+ failures.append(res)
Modified: packages/ipython/trunk/debian/patches/series
===================================================================
--- packages/ipython/trunk/debian/patches/series 2013-02-26 14:20:34 UTC (rev 23599)
+++ packages/ipython/trunk/debian/patches/series 2013-02-26 18:06:47 UTC (rev 23600)
@@ -6,3 +6,4 @@
parallel-2to3.patch
shared-static-path.patch
ma-python-cython.patch
+Added-missing-quotes.patch
More information about the Python-modules-commits
mailing list