diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2016-02-14 20:07:28 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2016-02-14 21:48:24 +0900 |
commit | 4452cc3d2ec02b8b4bbca049761e40729d288d8c (patch) | |
tree | bb1527bea9600da56e28c2d3f8cdcfb375071380 /sphinx/util/osutil.py | |
parent | 77e3246fb1a97630a8c58f8077c90e5affa2a20b (diff) | |
download | sphinx-git-4452cc3d2ec02b8b4bbca049761e40729d288d8c.tar.gz |
Fix #794: Date formatting in latex output is not localized
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 653530644..585dc6104 100644 --- a/sphinx/util/osutil.py +++ b/sphinx/util/osutil.py @@ -158,7 +158,8 @@ def make_filename(string): def ustrftime(format, *args): - # strftime for unicode strings + # [DEPRECATED] strftime for unicode strings + # It will be removed at Sphinx-1.5 if not args: # If time is not specified, try to use $SOURCE_DATE_EPOCH variable # See https://wiki.debian.org/ReproducibleBuilds/TimestampsProposal |