From 28f38f45d4571cb69d30c369c7e54aa9bda570cd Mon Sep 17 00:00:00 2001 From: CensoredUsername Date: Sat, 24 Feb 2024 01:59:53 +0100 Subject: [PATCH] Fix a typo in un.rpyc and update picklemagic to the most recent version. --- un.rpyc/picklemagic | 2 +- un.rpyc/unrpyc-compile.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/un.rpyc/picklemagic b/un.rpyc/picklemagic index 6e787d97..c1b2e550 160000 --- a/un.rpyc/picklemagic +++ b/un.rpyc/picklemagic @@ -1 +1 @@ -Subproject commit 6e787d97a065019b9d7a2c27b70a539422e31d24 +Subproject commit c1b2e550056870ea0e7a7b98c683e7989aeb352c diff --git a/un.rpyc/unrpyc-compile.py b/un.rpyc/unrpyc-compile.py index d6d6bf7a..d37b5879 100644 --- a/un.rpyc/unrpyc-compile.py +++ b/un.rpyc/unrpyc-compile.py @@ -130,7 +130,7 @@ def decompile_rpyc(data, abspath, init_offset): ensure_dir(out_filename) with codecs.open(out_filename, 'w', encoding='utf-8') as out_file: options = decompiler.Options(init_offset=init_offset) - decompiler.pprint(out_file, ast, optionst) + decompiler.pprint(out_file, ast, options) return True def decompile_game():