[Python-modules-commits] r23606 - in packages/ipython/trunk/debian/patches (1 file)
jtaylor-guest at users.alioth.debian.org
jtaylor-guest at users.alioth.debian.org
Tue Feb 26 18:32:22 UTC 2013
Date: Tuesday, February 26, 2013 @ 18:32:20
Author: jtaylor-guest
Revision: 23606
add missing parenthesis to patch
Modified:
packages/ipython/trunk/debian/patches/debianize-error-messages.patch
Modified: packages/ipython/trunk/debian/patches/debianize-error-messages.patch
===================================================================
--- packages/ipython/trunk/debian/patches/debianize-error-messages.patch 2013-02-26 18:09:00 UTC (rev 23605)
+++ packages/ipython/trunk/debian/patches/debianize-error-messages.patch 2013-02-26 18:32:20 UTC (rev 23606)
@@ -45,7 +45,7 @@
+ from IPython.utils import py3compat
raise TryNext("Getting text from the clipboard on this platform "
- "requires Tkinter.")
-+ "requires the %s-tk package." % "python3" if py3compat.PY3 else "python")
++ "requires the %s-tk package." % ("python3" if py3compat.PY3 else "python"))
root = Tkinter.Tk()
root.withdraw()
text = root.clipboard_get()
More information about the Python-modules-commits
mailing list