From 628e0028e94b398a8e8e026ab4beeaa048ada125 Mon Sep 17 00:00:00 2001 From: Antony Chazapis Date: Wed, 31 Aug 2011 17:40:22 +0300 Subject: [PATCH] Fix debug output. --- pithos/backends/modular.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pithos/backends/modular.py b/pithos/backends/modular.py index 0ffcb70..f858de1 100644 --- a/pithos/backends/modular.py +++ b/pithos/backends/modular.py @@ -112,7 +112,7 @@ class ModularBackend(BaseBackend): def list_accounts(self, user, marker=None, limit=10000): """Return a list of accounts the user can access.""" - logger.debug("list_accounts: %s %s", user, marker, limit) + logger.debug("list_accounts: %s %s %s", user, marker, limit) allowed = self._allowed_accounts(user) start, limit = self._list_limits(allowed, marker, limit) return allowed[start:start + limit] -- 1.7.10.4