Commit cd688b5e95a65bbfa4950f333fbacef709ebcefe

Darren Embry 2023-11-22T15:24:11

bug fixes

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
diff --git a/bin/zeroslash.py b/bin/zeroslash.py
index 7ab5805..1dbc37d 100755
--- a/bin/zeroslash.py
+++ b/bin/zeroslash.py
@@ -9,12 +9,14 @@ import argparse
 
 def copyChar(font, sourceCharName, destCharName, encoding=-1):
     if not destCharName in font:
-        if encoding < 0
+        if encoding < 0:
             raise Exception("%s not found and no encoding specified" % destCharName)
         font.createChar(encoding, destCharName)
+    print(sourceCharName)
     sourceChar = font[sourceCharName]
     if not sourceChar:
         raise Exception("%s not found" % sourceCharName)
+    print(destCharName)
     destChar = font[destCharName]
     if not destChar:
         raise Exception("%s not found" % destCharName)