A problem occurred in a Python script. Here is the sequence of
function calls leading up to the error, in the order they occurred.
| /home/zarneth/public_html/perthfurs.net/main.py |
123 user.showAccountMessage()
|
124 if param[0] == "account":
|
125 user.showAccount(param)
|
126 elif param[0] == "content":
|
127 content.showContent(param)
|
| user = <Account.User_Account instance>, user.showAccount = <bound method User_Account.showAccount of <Account.User_Account instance>>, param = ['account', 'profile', None, None, None, None, None, None, None] |
| /home/zarneth/public_html/perthfurs.net/Account.py in showAccount(self=<Account.User_Account instance>, params=['account', 'profile', None, None, None, None, None, None, None]) |
123 self.editList()
|
124 elif param=='profile':
|
125 self.showProfile(params[2], False)
|
126 elif param=='userList':
|
127 self.showUserList()
|
| self = <Account.User_Account instance>, self.showProfile = <bound method User_Account.showProfile of <Account.User_Account instance>>, params = ['account', 'profile', None, None, None, None, None, None, None], builtin False = False |