Skip to content

Commit 7cf3745

Browse files
committed
Minor fixes
1 parent c7e323b commit 7cf3745

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tools/turing-theme-extractor.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@
3636

3737
if len(sys.argv) != 2:
3838
print("Usage :")
39-
print(" turing theme-extractor.py path/to/theme-file.data")
39+
print(" turing-theme-extractor.py path/to/theme-file.data")
4040
print("Examples : ")
41-
print(" turing theme-extractor.py \"Dragon Ball.data\"")
42-
print(" turing theme-extractor.py \"Pikachu theme.data\"")
43-
print(" turing theme-extractor.py NZXT_BLUR.data")
41+
print(" turing-theme-extractor.py \"Dragon Ball.data\"")
42+
print(" turing-theme-extractor.py \"Pikachu theme.data\"")
43+
print(" turing-theme-extractor.py NZXT_BLUR.data")
4444
try:
4545
sys.exit(0)
4646
except:
@@ -60,7 +60,7 @@
6060

6161
# Find PNG IEND chunk (= end of file)
6262
iend_found = mm.find(PNG_IEND, header_found)
63-
print("Found PNG IEND at 0x%06x" % iend_found)
63+
print("Found PNG end-of-file at 0x%06x" % iend_found)
6464

6565
# Extract PNG data to a file
6666
theme_file.seek(header_found)

0 commit comments

Comments
 (0)