diff options
| author | Kurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com> | 2025-07-19 19:39:22 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-19 19:39:22 -0400 |
| commit | b03c82142b7258d0d876ac926e6025965722f7b5 (patch) | |
| tree | 17286b337ff3b780cd4189739426e8e5010cb493 /py_modules/lsfg_vk/config_schema.py | |
| parent | 31265ff5732ed65a273a2c0aa51995c3431d6908 (diff) | |
| download | decky-lsfg-vk-b03c82142b7258d0d876ac926e6025965722f7b5.tar.gz decky-lsfg-vk-b03c82142b7258d0d876ac926e6025965722f7b5.zip | |
Update py_modules/lsfg_vk/config_schema.py
Diffstat (limited to 'py_modules/lsfg_vk/config_schema.py')
| -rw-r--r-- | py_modules/lsfg_vk/config_schema.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py_modules/lsfg_vk/config_schema.py b/py_modules/lsfg_vk/config_schema.py index 9ab8bf5..4f036ff 100644 --- a/py_modules/lsfg_vk/config_schema.py +++ b/py_modules/lsfg_vk/config_schema.py @@ -340,7 +340,7 @@ class ConfigurationManager: # Parse export statements: export VAR=value if '=' in line: # Remove 'export ' prefix - export_line = line[7:] # len('export ') = 7 + export_line = line[len('export '):] key, value = export_line.split('=', 1) key = key.strip() value = value.strip() |
