diff options
author | Daniel Neuhäuser <ich@danielneuhaeuser.de> | 2010-05-25 00:55:30 +0200 |
---|---|---|
committer | Daniel Neuhäuser <ich@danielneuhaeuser.de> | 2010-05-25 00:55:30 +0200 |
commit | 6af81b8506d3f5ab7eec86ad031bf89870fd6035 (patch) | |
tree | 8590294901abfe2c5e3a5597642470adde917db1 /sphinx/util/osutil.py | |
parent | ec5a5e739bd93273be9649250443c1267069b203 (diff) | |
download | sphinx-git-6af81b8506d3f5ab7eec86ad031bf89870fd6035.tar.gz |
fix line length
Diffstat (limited to 'sphinx/util/osutil.py')
-rw-r--r-- | sphinx/util/osutil.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sphinx/util/osutil.py b/sphinx/util/osutil.py index 250e75741..9943b207f 100644 --- a/sphinx/util/osutil.py +++ b/sphinx/util/osutil.py @@ -128,6 +128,7 @@ def make_filename(string): if sys.version_info < (3, 0): def ustrftime(format, *args): # strftime for unicode strings - return time.strftime(unicode(format).encode('utf-8'), *args).decode('utf-8') + return time.strftime(unicode(format).encode('utf-8'), *args) \ + .decode('utf-8') else: ustrftime = time.strftime |