diff options
| author | Georg Brandl <georg@python.org> | 2014-01-23 06:58:28 +0100 |
|---|---|---|
| committer | Georg Brandl <georg@python.org> | 2014-01-23 06:58:28 +0100 |
| commit | cb5e874e7be29bc6d94d72361c04dcc0882c0e6e (patch) | |
| tree | 25bd71ac2d7674257b6115673341ea690fc0d144 | |
| parent | ee0cd61c8659a33c5d6e1f91af60ec5ffdb44769 (diff) | |
| download | sphinx-cb5e874e7be29bc6d94d72361c04dcc0882c0e6e.tar.gz | |
fix print statement
| -rw-r--r-- | sphinx/cmdline.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/cmdline.py b/sphinx/cmdline.py index 3af5863f..30c8c765 100644 --- a/sphinx/cmdline.py +++ b/sphinx/cmdline.py @@ -102,7 +102,7 @@ def main(argv): file=sys.stderr) return 0 if '--version' in allopts: - print 'Sphinx (sphinx-build) %s' % __version__ + print('Sphinx (sphinx-build) %s' % __version__) return 0 # get paths (first and second positional argument) |
