Skip to content

Commit 0aaa424

Browse files
authored
Small typo fix
1 parent 3bda44b commit 0aaa424

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tags.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -308,10 +308,10 @@ def start(packName, packId, packDesc):
308308
path = os.path.relpath(os.path.join(subdir, file))
309309
if sys.platform == "win32":
310310
if file.endswith(".mctag") and not path[path.index("\\") + 1:] in done:
311-
genTag(path[path.index("/") + 1:], packName, packId)
311+
genTag(path[path.index("\\") + 1:], packName, packId)
312312
else:
313313
if file.endswith(".mctag") and not path[path.index("/") + 1:] in done:
314314
genTag(path[path.index("/") + 1:], packName, packId)
315315

316316
if __name__ == "__main__":
317-
start(main.packName, main.packId, main.packDesc)
317+
start(main.packName, main.packId, main.packDesc)

0 commit comments

Comments
 (0)