From 0de8772c988f545d5c9a2558180b96ee04ea5c36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Tue, 4 Oct 2016 11:58:17 +0200 Subject: [PATCH] Removed __all__, as we didn't keep it up to date anyway. --- pillar/api/utils/__init__.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pillar/api/utils/__init__.py b/pillar/api/utils/__init__.py index c3d1c19e..db9307ce 100644 --- a/pillar/api/utils/__init__.py +++ b/pillar/api/utils/__init__.py @@ -13,7 +13,6 @@ from flask import current_app from werkzeug import exceptions as wz_exceptions import pymongo.results -__all__ = ('remove_private_keys', 'PillarJSONEncoder') log = logging.getLogger(__name__) @@ -113,4 +112,4 @@ def gravatar(email, size=64): parameters = {'s': str(size), 'd': 'mm'} return "https://www.gravatar.com/avatar/" + \ hashlib.md5(str(email)).hexdigest() + \ - "?" + urllib.urlencode(parameters) \ No newline at end of file + "?" + urllib.urlencode(parameters)