summaryrefslogtreecommitdiffhomepage
path: root/gbp/deb_utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'gbp/deb_utils.py')
-rw-r--r--gbp/deb_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gbp/deb_utils.py b/gbp/deb_utils.py
index f4bc854b..1ae8d105 100644
--- a/gbp/deb_utils.py
+++ b/gbp/deb_utils.py
@@ -20,7 +20,7 @@ def parse_changelog(changelog):
if '-' in cp['Version']:
upstream_version, cp['Debian-Version'] = cp['Version'].rsplit('-', 1)
if ':' in upstream_version:
- cp['Epoch'], cp['Upstream-Version'] = upstream_version.split(':',1)
+ cp['Epoch'], cp['Upstream-Version'] = upstream_version.split(':', 1)
else:
cp['Upstream-Version'] = upstream_version
else: