[Python-apps-commits] r13841 - in packages/pelican/trunk/debian/patches (1 file)

vcheng at users.alioth.debian.org vcheng at users.alioth.debian.org
Mon Jan 2 21:31:35 UTC 2017


    Date: Monday, January 2, 2017 @ 21:31:09
  Author: vcheng
Revision: 13841

update quickstart_attribute_error.patch

Modified:
  packages/pelican/trunk/debian/patches/quickstart_attribute_error.patch

Modified: packages/pelican/trunk/debian/patches/quickstart_attribute_error.patch
===================================================================
--- packages/pelican/trunk/debian/patches/quickstart_attribute_error.patch	2017-01-02 21:20:17 UTC (rev 13840)
+++ packages/pelican/trunk/debian/patches/quickstart_attribute_error.patch	2017-01-02 21:31:09 UTC (rev 13841)
@@ -24,7 +24,7 @@
      'default_pagination': 10,
      'siteurl': '',
 -    'lang': locale.getlocale()[0].split('_')[0],
-+    'lang': locale.getlocale()[0].split('_')[0] if locale.getlocale() is not None else None,
++    'lang': locale.getlocale()[0].split('_')[0] if locale.getlocale()[0] is not None else None,
      'timezone': _DEFAULT_TIMEZONE
  }
  




More information about the Python-apps-commits mailing list