diff options
author | metamuffin <metamuffin@disroot.org> | 2023-07-31 20:28:38 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2023-07-31 20:28:38 +0200 |
commit | 30306bcf5a312c8749b1b66ef0a426cf7aaee989 (patch) | |
tree | 74836ccee827589b3606c65f8502e4e6ef13d880 /tools/src/bin | |
parent | aeafba7847e189313df3025e6d6f291999b57350 (diff) | |
download | jellything-30306bcf5a312c8749b1b66ef0a426cf7aaee989.tar jellything-30306bcf5a312c8749b1b66ef0a426cf7aaee989.tar.bz2 jellything-30306bcf5a312c8749b1b66ef0a426cf7aaee989.tar.zst |
images loading again
Diffstat (limited to 'tools/src/bin')
-rw-r--r-- | tools/src/bin/import.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/src/bin/import.rs b/tools/src/bin/import.rs index f740fec..1fff206 100644 --- a/tools/src/bin/import.rs +++ b/tools/src/bin/import.rs @@ -175,7 +175,7 @@ fn main() -> anyhow::Result<()> { let f = File::create(path.join(if series { "directory.json".to_string() } else { - format!("{ident}.jelly",) + format!("{ident}.jelly") }))?; serde_json::to_writer_pretty(f, &node)?; } |