diff options
| author | termie <github@anarkystic.com> | 2011-11-14 15:52:25 -0800 |
|---|---|---|
| committer | termie <github@anarkystic.com> | 2011-11-14 15:52:25 -0800 |
| commit | c8b28b59eda06a95aba3827090c283085358ea1b (patch) | |
| tree | c030d856bcf555a2ab9903db6c5f89cc88b39825 /bin | |
| parent | 8eea6b390b51f40130a96dd745cc907483a882a4 (diff) | |
pep8
Diffstat (limited to 'bin')
| -rwxr-xr-x | bin/ksl | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -74,17 +74,20 @@ class CrudCommands(BaseApp): class UserCommands(CrudCommands): ACTION_MAP = {'add': 'create_user', - 'create': 'create_user',} + 'create': 'create_user', + } class TenantCommands(CrudCommands): ACTION_MAP = {'add': 'create_tenant', - 'create': 'create_tenant',} + 'create': 'create_tenant', + } class ExtrasCommands(CrudCommands): ACTION_MAP = {'add': 'create_extras', - 'create': 'create_extras',} + 'create': 'create_extras', + } class Auth(BaseApp): @@ -101,7 +104,6 @@ class Auth(BaseApp): print resp - CMDS = {'loaddata': LoadData, 'user': UserCommands, 'tenant': TenantCommands, |
