Skip to content
Snippets Groups Projects
Commit fbe19e85 authored by Steve McIntyre's avatar Steve McIntyre Committed by Guido Gunther
Browse files

Import Debian changes 1.11-2

vmdebootstrap (1.11-2) unstable; urgency=medium

  * Replacs Lars as maintainer
  * Tweak the doc build - add .decode() to fix byte/string TypeError
parent 861426e5
No related branches found
No related tags found
No related merge requests found
vmdebootstrap (1.11-2) unstable; urgency=medium
* Replacs Lars as maintainer
* Tweak the doc build - add .decode() to fix byte/string TypeError
-- Steve McIntyre <93sam@debian.org> Sun, 31 Mar 2019 16:57:20 +0700
vmdebootstrap (1.11-1) unstable; urgency=medium
* Fix maintainer address in debian/control.
......
Source: vmdebootstrap
Section: admin
Priority: extra
Maintainer: Lars Wirzenius <liw@liw.fi>
Uploaders: Iain R. Learmonth <irl@debian.org>,
Steve McIntyre <93sam@debian.org>
Maintainer: Steve McIntyre <93sam@debian.org>
Uploaders: Iain R. Learmonth <irl@debian.org>
Build-Depends: debhelper (>= 8.0.0), dh-python,
python-sphinx (>= 1.0.7+dfsg) | python3-sphinx,
python | python-all | python-dev | python-all-dev,
......
Description: Fix sphinx encoding problem during doc build
--- vmdebootstrap-1.11.orig/doc/conf.py
+++ vmdebootstrap-1.11/doc/conf.py
@@ -55,7 +55,7 @@ copyright = '2015 Neil Williams'
# built documents.
#
# The short X.Y version.
-version = subprocess.Popen(['python', 'setup.py', '-V'], cwd=r'..', stdout=subprocess.PIPE).stdout.read().rstrip()
+version = subprocess.Popen(['python', 'setup.py', '-V'], cwd=r'..', stdout=subprocess.PIPE).stdout.read().rstrip().decode()
# The full version, including alpha/beta/rc tags.
release = version
doc-encoding.patch
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment