aboutsummaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 6919a6e..e92818f 100755
--- a/setup.py
+++ b/setup.py
@@ -11,7 +11,7 @@ changelog = "debian/changelog"
if os.path.exists(changelog):
with open(changelog, encoding='utf-8') as fp:
head = fp.readline()
- match = re.compile(".*\(([0-9.]+)\+linuxmint.+\).*").match(head)
+ match = re.compile(".*\(([0-9.]+)\+(linuxmint|shopno).+\).*").match(head)
if match:
version = match.group(1)
with open("AptUrl/Version.py", "w") as fp: