Skip to content

Commit e524457

Browse files
authored
fix: do not use interpolation for INI files in cloud_storage.py (#1081)
Closes #1079.
1 parent 067cbbc commit e524457

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/renku_data_services/notebooks/api/schemas/cloud_storage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ def config_string(self, name: str) -> str:
264264
# Switch is a fake provider we add for users, we need to replace it since rclone itself
265265
# doesn't know it
266266
self.configuration["provider"] = "Other"
267-
parser = ConfigParser()
267+
parser = ConfigParser(interpolation=None)
268268
parser.add_section(name)
269269

270270
def _stringify(value: Any) -> str:

0 commit comments

Comments
 (0)