Skip to content

Commit 8c135cd

Browse files
committed
Use repr(id) in asuuid(id::Any)
1 parent 8217339 commit 8c135cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ProgressLogging.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ end
131131
const PROGRESS_LOGGING_UUID_NS = UUID("1e962757-ea70-431a-b9f6-aadf988dcb7f")
132132

133133
asuuid(id::UUID) = id
134-
asuuid(id) = uuid5(PROGRESS_LOGGING_UUID_NS, string(id))
134+
asuuid(id) = uuid5(PROGRESS_LOGGING_UUID_NS, repr(id))
135135

136136

137137
"""

0 commit comments

Comments
 (0)