diff options
author | WAKAYAMA Shirou <shirou.faw@gmail.com> | 2013-02-10 01:46:31 +0900 |
---|---|---|
committer | WAKAYAMA Shirou <shirou.faw@gmail.com> | 2013-02-10 01:46:31 +0900 |
commit | 796215a07f561a52cb080ab94eb5d60d28062a4f (patch) | |
tree | b134aac594861fa92e12a64bc7df3d502d2e6415 | |
parent | e1b9585d96a18ca595f732cce981681b3c15f8cc (diff) | |
download | sphinx-796215a07f561a52cb080ab94eb5d60d28062a4f.tar.gz |
change None to 'html' to regenerate output when the setting is changed.
-rw-r--r-- | sphinx/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/config.py b/sphinx/config.py index db964bf5..0374df97 100644 --- a/sphinx/config.py +++ b/sphinx/config.py @@ -142,7 +142,7 @@ class Config(object): epub_tocdup = (True, 'env'), epub_fix_images = (False, 'env'), epub_max_image_width = (0, 'env'), - epub_show_urls = ('inline', None), + epub_show_urls = ('inline', 'html'), # LaTeX options latex_documents = (lambda self: [(self.master_doc, |