summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/hiccup/helpers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hiccup/helpers.py b/src/hiccup/helpers.py
index 541fae4..2627e9d 100644
--- a/src/hiccup/helpers.py
+++ b/src/hiccup/helpers.py
@@ -113,5 +113,5 @@ def get_distro_id(filename: str):
for line in file.readlines():
k, v = line.strip().split("=")
if k == "ID":
- return v
+ return v.strip('"')
return ""