correct indent

This commit is contained in:
dblugeon 2013-09-08 14:48:07 +02:00
parent cf6173b5e2
commit 8e26558c29

View file

@ -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