8000 Fix generated import statements in tables.rs · unicode-rs/unicode-normalization@cb9fb4d · GitHub
[go: up one dir, main page]

Skip to content

Commit cb9fb4d

Browse files
committed
Fix generated import statements in tables.rs
1 parent 744c255 commit cb9fb4d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/unicode.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -477,8 +477,8 @@ def minimal_perfect_hash(d):
477477
data = UnicodeData()
478478
with open("tables.rs", "w", newline = "\n") as out:
479479
out.write(PREAMBLE)
480-
out.write("use quick_check::IsNormalized;\n")
481-
out.write("use quick_check::IsNormalized::*;\n")
480+
out.write("use crate::quick_check::IsNormalized;\n")
481+
out.write("use crate::quick_check::IsNormalized::*;\n")
482482
out.write("\n")
483483

484484
version = "(%s, %s, %s)" % tuple(UNICODE_VERSION.split("."))

0 commit comments

Comments
 (0)
0