mirror of
https://github.com/YunoHost/moulinette.git
synced 2024-09-03 20:06:31 +02:00
correct indent
This commit is contained in:
parent
cf6173b5e2
commit
8e26558c29
1 changed files with 13 additions and 13 deletions
|
@ -132,7 +132,7 @@ def app_list(offset=None, limit=None, filter=None, raw=False):
|
|||
|
||||
if len(app_dict) > (0 + offset) and limit > 0:
|
||||
sorted_app_dict = {}
|
||||
for sorted_keys in sorted(app_dict.keys())[i:]:
|
||||
for sorted_keys in sorted(app_dict.keys())[offset:]:
|
||||
sorted_app_dict[sorted_keys] = app_dict[sorted_keys]
|
||||
|
||||
i = 0
|
||||
|
|
Loading…
Reference in a new issue