diff options
| author | seth <[email protected]> | 2022-08-23 23:24:23 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2022-08-23 23:24:23 -0400 |
| commit | a2c082e7d3ecba60c872ef23e5db59ecfa6aed97 (patch) | |
| tree | 34b8758b445788aedfbd1cb79820ea36a04cd5e9 /src | |
| parent | 73f1da782ae13bd64ee00f827c6ee0db799d1222 (diff) | |
[helpers.py] return distro id properly
Diffstat (limited to 'src')
| -rw-r--r-- | src/hiccup/helpers.py | 2 |
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 "" |
