diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2019-01-09 00:54:42 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2019-01-09 00:54:42 +0900 |
commit | 035ebff407ccde62778ad9661438b56ca01394db (patch) | |
tree | af4e549faa3868b0b6378bb35c86140be66f992f /sphinx/builders/html.py | |
parent | 90b93dda3376bee9078f7580824a004c5d46a0db (diff) | |
download | sphinx-git-035ebff407ccde62778ad9661438b56ca01394db.tar.gz |
Make info messages more translatable
Diffstat (limited to 'sphinx/builders/html.py')
-rw-r--r-- | sphinx/builders/html.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/builders/html.py b/sphinx/builders/html.py index e395144aa..3a943b3f0 100644 --- a/sphinx/builders/html.py +++ b/sphinx/builders/html.py @@ -881,7 +881,7 @@ class StandaloneHTMLBuilder(Builder): elif not path.isfile(icontarget): copyfile(path.join(self.confdir, self.config.html_favicon), icontarget) - logger.info('done') + logger.info(__('done')) except OSError as err: logger.warning(__('cannot copy static file %r'), err) |