aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOlivier Tilloy <olivier@tilloy.net>2011-07-23 06:54:52 +0000
committerOlivier Tilloy <olivier@tilloy.net>2011-07-23 06:54:52 +0000
commit67080862d85b8ec63dbba376666730ad797b4fb9 (patch)
treee01e199f26c2a486b9e548c6f96207d2bb88712e
parent9a43f02b9b9fbeec3db5d17e275b3e6e16df8bfa (diff)
downloadpyexiv2-67080862d85b8ec63dbba376666730ad797b4fb9.tar.gz
Added missing whitespaces after commas.
-rw-r--r--src/pyexiv2/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pyexiv2/utils.py b/src/pyexiv2/utils.py
index 8ed9e9c..de56c21 100644
--- a/src/pyexiv2/utils.py
+++ b/src/pyexiv2/utils.py
@@ -274,7 +274,7 @@ class Rational(object):
:return: the official string representation of the object
:rtype: string
"""
- return '%s(%d,%d)' % (self.__class__.__name__,self._numerator,self._denominator)
+ return '%s(%d, %d)' % (self.__class__.__name__, self._numerator, self._denominator)