-
Notifications
You must be signed in to change notification settings - Fork 144
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Disable value interpolation in configparser
The metadata is a text file and cannot use $ or %. A % can occur in uri value of Extra Data which can't be parsed with interpolation enabled
- Loading branch information
Showing
3 changed files
with
30 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
[Application] | ||
name=org.flathub.example-spaces | ||
command=example spaces | ||
|
||
[Context] | ||
persistent=.foo bar | ||
filesystems=~/foo bar | ||
|
||
[Extra Data] | ||
name=example spaces.ext | ||
checksum=b5bb9d8014a0f9b1d61e21e796d78dccdf1352f23cd32812f4850b878ae4944c | ||
size=1 | ||
uri=https://example.org/foo%20bar.ext | ||
name1=example%20spaces.ext | ||
checksum1=1f2ec52b774368781bed1d1fb140a92e0eb6348090619c9291f9a5a3c8e8d151 | ||
size1=1 | ||
uri1=https://example.org/foo bar.ext |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters