Skip to content

Commit 7508f5f

Browse files
committed
fix: manuf.txt file location
1 parent beb0fd5 commit 7508f5f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/make-manuf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def main() -> None:
7373
keys = list(content.keys())
7474
keys.sort()
7575
sorted_content = {i: content[i] for i in keys}
76-
with open("src/manuf.txt", "w+", encoding="utf-8") as manuf_file:
76+
with open("pymanuf/manuf.txt", "w+", encoding="utf-8") as manuf_file:
7777
manuf_file.write(file_header)
7878
for k, v in sorted_content.items():
7979
separator = "\t" * 2

0 commit comments

Comments
 (0)