(self)
| 29 | class UserPlugin(object): |
| 30 | # In multiuser mode users data only exits in memory, dont write to data/user.json |
| 31 | def save(self): |
| 32 | if not config.multiuser_local: |
| 33 | return False |
| 34 | else: |
| 35 | return super(UserPlugin, self).save() |
no outgoing calls