This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository python-x2go. from 26bfe2d docs/source/conf.py: drop minimum sphinx version requirement again, detect version manually and adapt config based on this information. new de4af10 docs/source/conf.py: fix parse error due to wrong else usage. The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: debian/changelog | 1 + docs/source/conf.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/python-x2go.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository python-x2go. commit de4af107b3f2058a9d146a7f3c66349d0acfceb4 Author: Mihai Moldovan <ionic@ionic.de> Date: Sat Jun 2 05:05:32 2018 +0200 docs/source/conf.py: fix parse error due to wrong else usage. --- debian/changelog | 1 + docs/source/conf.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 5b9a18b..918645f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -20,6 +20,7 @@ python-x2go (0.5.99.1-0x2go1) UNRELEASED; urgency=medium the sphinx.ext.viewcode extension. - docs/source/conf.py: drop minimum sphinx version requirement again, detect version manually and adapt config based on this information. + - docs/source/conf.py: fix parse error due to wrong else usage. * python-x2go.spec: - Also add fdupes package as a build dependency for RHEL-based distros. - Correctly pythonize package, for Fedora, RHEL/EPEL and OpenSuSE. It's diff --git a/docs/source/conf.py b/docs/source/conf.py index a666c35..ad4283d 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -135,7 +135,7 @@ todo_include_todos = True sphinx_want_ver = distutils.version.LooseVersion('1.3') if sphinxver >= sphinx_want_ver: html_theme = 'classic' -else +else: html_theme = 'default' # Theme options are theme-specific and customize the look and feel of a theme -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/python-x2go.git