We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d86d04c commit b0af947Copy full SHA for b0af947
sgpt/config.py
@@ -75,7 +75,7 @@ def _read(self) -> None:
75
with open(self.config_path, "r", encoding="utf-8") as file:
76
for line in file:
77
if line.strip() and not line.startswith("#"):
78
- key, value = line.strip().split("=")
+ key, value = line.strip().split("=", 1)
79
self[key] = value
80
81
def get(self, key: str) -> str: # type: ignore
0 commit comments