Skip to content

Commit

Permalink
lilbugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
FIRST_NAME LAST_NAME authored and FIRST_NAME LAST_NAME committed Jul 9, 2023
1 parent cace6b2 commit 84d2839
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = roblox-pyc
version = 1.6.6.5.3
version = 1.6.6.5.4

[options]
packages = src
Expand Down
2 changes: 1 addition & 1 deletion src/cnodevisitor.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def visit_var_decl(self, node):
def visit_compound_stmt(self, node):
# Process compound statements (e.g., function bodies, loops, etc.)
self.lua_code += "{\n"
for child in node:
for child in node.get_children():
self.visit_node(child)
self.lua_code += "}\n"

Expand Down

0 comments on commit 84d2839

Please sign in to comment.