Skip to content

Commit

Permalink
Update parser.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Captian-obvious authored Nov 22, 2023
1 parent c9517be commit 2782c06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
def parse(file):
parsedString = ""
with open(file, "rb") as file:
rbxmBuffer=Buffer.new(file, false)
rbxmBuffer=Buffer.new(file, False)
# Read metadata / header
if (rbxmBuffer.read(8)!=HEADER or rbxmBuffer.read(6)!=RBXM_SIGNATURE):
errorHandler.error("Provided file does not match the header of an RBXM file.")
Expand Down

0 comments on commit 2782c06

Please sign in to comment.