Skip to content

Commit 5e4f43f

Browse files
author
Arno Töll
committedDec 3, 2012
Pedantic fixes for setup.py
1 parent 41980f0 commit 5e4f43f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed
 

‎setup.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@
55
from setuptools import setup
66

77
long_description = open('README.md').read()
8-
cur = open('debian/changelog', 'r').readlines()[0].strip()
9-
rgx = r"(?<src>.+) \((?<version>.+)\) (?<suite>.*); .*"
8+
cur = open('debian/changelog', 'r').readline().strip()
109
pobj = re.findall(
1110
r'(?P<src>.*) \((?P<version>.*)\) (?P<suite>.*); .*',
1211
cur

0 commit comments

Comments
 (0)
Please sign in to comment.