From 02c974e8ca54e35d08b688388279e99d0d039b99 Mon Sep 17 00:00:00 2001 From: Laurent Peuch Date: Tue, 7 Feb 2017 20:47:04 +0100 Subject: [PATCH] [mod] remove useless addition --- src/yunohost/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/yunohost/app.py b/src/yunohost/app.py index 79857f075..8e67e5030 100644 --- a/src/yunohost/app.py +++ b/src/yunohost/app.py @@ -198,7 +198,7 @@ def app_list(offset=None, limit=None, filter=None, raw=False, installed=False, w app_dict[app]['repository'] = None # ??? - if not (len(app_dict) > (0 + offset) and limit > 0): + if not (len(app_dict) > offset and limit > 0): return {'apps': list_dict} if not raw else list_dict # Sort app list