diff options
-rw-r--r-- | pavement.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pavement.py b/pavement.py index d168f23bb..2787a613f 100644 --- a/pavement.py +++ b/pavement.py @@ -289,6 +289,7 @@ def replace_module_imports(): elif '/accounts/' in path: content = content.replace('self.accounts[user]["password"]', 'self.password') content = content.replace("self.accounts[user]['password']", 'self.password') + content = content.replace('.getAccountInfo()["premium"]', '.isPremium()') f = open(path, 'w') f.write(content) f.close() |