summaryrefslogtreecommitdiff
path: root/docutils/__init__.py
diff options
context:
space:
mode:
authorgrubert <grubert@929543f6-e4f2-0310-98a6-ba3bd3dd1d04>2020-08-10 10:54:37 +0000
committergrubert <grubert@929543f6-e4f2-0310-98a6-ba3bd3dd1d04>2020-08-10 10:54:37 +0000
commit6e2e82794b04ec1255db0df5de8babfeeffd98cb (patch)
tree38b17b3825c9137b40e82c6948016ed7b6f3a39e /docutils/__init__.py
parent7305737c841f3ecfcec9358f137b32effa1390ef (diff)
downloaddocutils-6e2e82794b04ec1255db0df5de8babfeeffd98cb.tar.gz
Formatting
git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@8537 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
Diffstat (limited to 'docutils/__init__.py')
-rw-r--r--docutils/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/docutils/__init__.py b/docutils/__init__.py
index dbf67b24b..e3f64801a 100644
--- a/docutils/__init__.py
+++ b/docutils/__init__.py
@@ -85,7 +85,7 @@ class VersionInfo(namedtuple('VersionInfo',
'version ordering of the related __version__')
if serial != 0:
raise ValueError('"serial" must be 0 for final releases')
-
+
return super(VersionInfo, cls).__new__(cls, major, minor, micro,
releaselevel, serial, release)
@@ -103,7 +103,7 @@ class VersionInfo(namedtuple('VersionInfo',
if isinstance(other, tuple):
other = VersionInfo(*other)
return tuple.__le__(self, other)
-
+
def __ge__(self, other):
if isinstance(other, tuple):
other = VersionInfo(*other)