We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4f5ce8 commit 2384257Copy full SHA for 2384257
toontown/compiler/compile.py
@@ -17,6 +17,12 @@
17
18
lexer = lex.lex(optimize=0)
19
20
+class DNAError(Exception):
21
+ pass
22
+
23
+import builtins
24
+builtins.DNAError = DNAError
25
26
def loadDNAFile(dnaStore, filename):
27
root = DNARoot.DNARoot(name='root', dnaStore=dnaStore)
28
with open(filename, 'r') as f:
ver
@@ -1 +1 @@
1
-1.1.0
+1.1.0b
0 commit comments