[Python-modules-commits] r30750 - in packages/python-gdata/trunk/debian (3 files)

mitya57-guest at users.alioth.debian.org mitya57-guest at users.alioth.debian.org
Fri Sep 26 11:47:04 UTC 2014


    Date: Friday, September 26, 2014 @ 11:47:04
  Author: mitya57-guest
Revision: 30750

Add a patch to fix SyntaxError in one of the examples.

Added:
  packages/python-gdata/trunk/debian/patches/emailsettings_syntax_error.patch
Modified:
  packages/python-gdata/trunk/debian/changelog
  packages/python-gdata/trunk/debian/patches/series

Modified: packages/python-gdata/trunk/debian/changelog
===================================================================
--- packages/python-gdata/trunk/debian/changelog	2014-09-26 04:03:42 UTC (rev 30749)
+++ packages/python-gdata/trunk/debian/changelog	2014-09-26 11:47:04 UTC (rev 30750)
@@ -1,3 +1,9 @@
+python-gdata (2.0.18+dfsg1-3) UNRELEASED; urgency=medium
+
+  * Add a patch to fix SyntaxError in one of the examples.
+
+ -- Dmitry Shachnev <mitya57 at debian.org>  Fri, 26 Sep 2014 15:46:04 +0400
+
 python-gdata (2.0.18+dfsg1-2) unstable; urgency=medium
 
   * Remove examples that require Google appengine (this fixes

Added: packages/python-gdata/trunk/debian/patches/emailsettings_syntax_error.patch
===================================================================
--- packages/python-gdata/trunk/debian/patches/emailsettings_syntax_error.patch	                        (rev 0)
+++ packages/python-gdata/trunk/debian/patches/emailsettings_syntax_error.patch	2014-09-26 11:47:04 UTC (rev 30750)
@@ -0,0 +1,15 @@
+Description: fix a syntax error
+Author: Harvey Falcic <harvey.falcic at gmail.com>
+Last-Update: 2014-09-26
+
+--- a/samples/apps/emailsettings_pop_settings.py
++++ b/samples/apps/emailsettings_pop_settings.py
+@@ -131,7 +131,7 @@
+       raise PopSettingsException('Invalid consumer credentials')
+     elif e.status == 503:
+       raise PopSettingsException('Server busy')
+-    else e.status == 500:
++    elif e.status == 500:
+       raise PopSettingsException('Internal server error')
+     else:
+       raise PopSettingsException('Unknown error')

Modified: packages/python-gdata/trunk/debian/patches/series
===================================================================
--- packages/python-gdata/trunk/debian/patches/series	2014-09-26 04:03:42 UTC (rev 30749)
+++ packages/python-gdata/trunk/debian/patches/series	2014-09-26 11:47:04 UTC (rev 30750)
@@ -4,3 +4,4 @@
 disable_network_test.patch
 handle_redirects.patch
 use_system_crypto.patch
+emailsettings_syntax_error.patch




More information about the Python-modules-commits mailing list