diff options
Diffstat (limited to 'bin/just-import-cargo.py')
-rwxr-xr-x | bin/just-import-cargo.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/just-import-cargo.py b/bin/just-import-cargo.py index 86d55da..e82c0c9 100755 --- a/bin/just-import-cargo.py +++ b/bin/just-import-cargo.py @@ -447,7 +447,7 @@ def compute_targets( d = defaultdict(list) d["type"] = ["@", "rules", "cargo", "feature"] d["name"] = [f] - targets[f] = d + targets[f] = dict(d) with open(targets_file, "w") as f: print(hdumps(targets), file=f) return targets |