summaryrefslogtreecommitdiffstats
path: root/pavement.py
diff options
context:
space:
mode:
Diffstat (limited to 'pavement.py')
-rw-r--r--pavement.py1
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()