From 2a94b96204291eada9c40de502793b6d8c753d4d Mon Sep 17 00:00:00 2001 From: Philippe Ombredanne Date: Tue, 15 Apr 2014 14:47:20 +0200 Subject: Fixed typo in docstring --- pystache/parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pystache/parser.py b/pystache/parser.py index c6a171f..9a4fba2 100644 --- a/pystache/parser.py +++ b/pystache/parser.py @@ -43,7 +43,7 @@ def parse(template, delimiters=None): def _compile_template_re(delimiters): """ - Return a regular expresssion object (re.RegexObject) instance. + Return a regular expression object (re.RegexObject) instance. """ # The possible tag type characters following the opening tag, -- cgit v1.2.1 From 5e08418cb914e59f0c13e52323833ab0c06a4c9d Mon Sep 17 00:00:00 2001 From: Chris Jerdonek Date: Tue, 30 Sep 2014 01:16:26 -0700 Subject: Remove Python 2.5 from .travis.yml. Travis CI no longer supports Python 2.5. Thanks to @dmorrison42 for pointing this out. Removing 2.5 from the Travis config should make the Travis build status image work again. --- .travis.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index a07a55f..0022705 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,7 @@ language: python -# Travis CI has no plans to support Python 2.4 and Jython. +# Travis CI has no plans to support Jython and no longer supports Python 2.5. python: - - 2.5 - 2.6 - 2.7 - 3.2 -- cgit v1.2.1