Skip to content

Commit

Permalink
Fix typo in unrpyc-compile.py
Browse files Browse the repository at this point in the history
  • Loading branch information
CensoredUsername committed Jul 2, 2019
1 parent 8fdda39 commit 3a786b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion un.rpyc/unrpyc-compile.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def read_ast_from_file(raw_contents):

raw_contents = chunks[1]
raw_contents = raw_contents.decode('zlib')
data, stmts = magic.safe_loads(raw_contents, factory, ("_ast, collections",))
data, stmts = magic.safe_loads(raw_contents, factory, {"_ast", "collections"})
return stmts

def ensure_dir(filename):
Expand Down

0 comments on commit 3a786b5

Please sign in to comment.