Skip to content

Commit 00f4122

Browse files
committed
fix error from string(nothing)
1 parent 03dd402 commit 00f4122

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/loadsave.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ for fn in (:load, :loadstreaming, :metadata)
170170
push!(failures, (e, q))
171171
end
172172
end
173-
handle_exceptions(failures, "loading \"$(filename(q))\"")
173+
handle_exceptions(failures, "loading $(repr(filename(q)))")
174174
end
175175
end
176176

@@ -194,7 +194,7 @@ for fn in (:save, :savestreaming)
194194
push!(failures, (e, q))
195195
end
196196
end
197-
handle_exceptions(failures, "saving \"$(filename(q))\"")
197+
handle_exceptions(failures, "saving $(repr(filename(q)))")
198198
end
199199
end
200200

0 commit comments

Comments
 (0)