Workaround hard to parse $'' strings
Signed-off-by: Alfred Wingate <parona@protonmail.com>
This commit is contained in:
parent
e9fd94e1a5
commit
b2cd013b09
@ -153,6 +153,9 @@ def scan_upstream(query, on_progress=None):
|
|||||||
else:
|
else:
|
||||||
uris = pkg.environment("SRC_URI")
|
uris = pkg.environment("SRC_URI")
|
||||||
|
|
||||||
|
# Roundabout way to handle $'' strings
|
||||||
|
uris = uris.encode("raw_unicode_escape").decode("unicode_escape")
|
||||||
|
|
||||||
cpv = pkg.cpv
|
cpv = pkg.cpv
|
||||||
|
|
||||||
uris = parse_src_uri(uris)
|
uris = parse_src_uri(uris)
|
||||||
|
Loading…
Reference in New Issue
Block a user