aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--setup.py2
-rw-r--r--test/__init__.py2
-rw-r--r--yamlish.py8
3 files changed, 6 insertions, 6 deletions
diff --git a/setup.py b/setup.py
index 9cd4961..1703914 100644
--- a/setup.py
+++ b/setup.py
@@ -43,7 +43,7 @@ setup(
description='Python implementation of YAMLish',
author='Matěj Cepl',
author_email='mcepl@redhat.com',
- url='https://gitorious.org/yamlish',
+ url='http://luther.ceplovi.cz/git/?p=yamlish.git;a=summary',
py_modules=['yamlish'],
long_description=read("README.txt"),
keywords=['TAP', 'YAML', 'yamlish'],
diff --git a/test/__init__.py b/test/__init__.py
index 05ba3b2..1c5c139 100644
--- a/test/__init__.py
+++ b/test/__init__.py
@@ -41,7 +41,7 @@ def _create_input_test(test_src, tested_function):
logging.debug("test_src['out'] = %s", unicode(test_src['out']))
self.assertEqual(got, want, """Result matches
expected = %s
-
+
observed = %s
""" % (want, got))
diff --git a/yamlish.py b/yamlish.py
index c5bdfb0..a2e3188 100644
--- a/yamlish.py
+++ b/yamlish.py
@@ -24,7 +24,7 @@ Easy YAML serialisation compatible with TAP format.
Port of `Data::YAML Perl module <https://github.com/AndyA/Data--YAML>`,
satisfying all its tests, intended to be used for support of
`TAP <http://testanything.org/>` data format. Port of the original
-documentation follows.
+documentation follows.
The syntax accepted by this module is a subset of `YAML <http://yaml.org>`.
@@ -37,7 +37,7 @@ specification is huge. This module implements a small subset of the
complete syntax trading completeness for compactness and simplicity.
This restricted syntax is known (to me at least) as 'YAMLish'.
-These examples demonstrates the full range of supported syntax.
+These examples demonstrates the full range of supported syntax.
All YAML documents must begin with '---' and end with a line
containing '...'.
@@ -113,7 +113,7 @@ import logging
import yaml
__docformat__ = 'reStructuredText'
-__version__ = "0.9"
+__version__ = "0.10"
__author__ = u"Matěj Cepl <mcepl_at_redhat_dot_com>"
class _YamlishLoader(yaml.loader.SafeLoader):
@@ -128,7 +128,7 @@ class _YamlishLoader(yaml.loader.SafeLoader):
@classmethod
def remove_implicit_resolver(cls, tag):
"""
- Remove an implicit resolver from a Loader class identified by its tag.
+ Remove an implicit resolver from a Loader class identified by its tag.
"""
if not 'yaml_implicit_resolvers' in cls.__dict__:
cls.yaml_implicit_resolvers = cls.yaml_implicit_resolvers.copy()