mirror of
https://github.com/aclist/dztui.git
synced 2025-04-04 03:23:01 +02:00
fix: interpolate file name
All checks were successful
Mirror to Codeberg / mirror-to-codeberg (push) Successful in 15s
All checks were successful
Mirror to Codeberg / mirror-to-codeberg (push) Successful in 15s
This commit is contained in:
parent
10c8555ddc
commit
38de9a8e9d
2 changed files with 2 additions and 2 deletions
2
dzgui.sh
2
dzgui.sh
|
@ -587,7 +587,7 @@ fetch_helpers_by_sum(){
|
||||||
[[ -f "$config_file" ]] && source "$config_file"
|
[[ -f "$config_file" ]] && source "$config_file"
|
||||||
declare -A sums
|
declare -A sums
|
||||||
sums=(
|
sums=(
|
||||||
["ui.py"]="121f27e51c945d78e97b77397d3c5173"
|
["ui.py"]="f6e8b113e586a4bb2ea40c9ee56ebc95"
|
||||||
["query_v2.py"]="55d339ba02512ac69de288eb3be41067"
|
["query_v2.py"]="55d339ba02512ac69de288eb3be41067"
|
||||||
["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397"
|
["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397"
|
||||||
["funcs"]="f6e8b113e586a4bb2ea40c9ee56ebc95"
|
["funcs"]="f6e8b113e586a4bb2ea40c9ee56ebc95"
|
||||||
|
|
|
@ -885,7 +885,7 @@ class OuterWindow(Gtk.Window):
|
||||||
data = json.load(infile)
|
data = json.load(infile)
|
||||||
valid_json = True
|
valid_json = True
|
||||||
except json.decoder.JSONDecodeError:
|
except json.decoder.JSONDecodeError:
|
||||||
logger.critical("JSON decode error in '%s'" %(geometry_path))
|
logger.critical("JSON decode error in '%s'" %(res_path))
|
||||||
valid_json = False
|
valid_json = False
|
||||||
else:
|
else:
|
||||||
valid_json = False
|
valid_json = False
|
||||||
|
|
Loading…
Reference in a new issue