From 8bbc954e1d47149a55e6d2684169098bd059f046 Mon Sep 17 00:00:00 2001 From: Sergio Oliveira Date: Mon, 2 Feb 2015 11:57:53 -0200 Subject: [PATCH] Fixed code style --- colab/search/utils.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/colab/search/utils.py b/colab/search/utils.py index 1c3caa1..c7a60d8 100644 --- a/colab/search/utils.py +++ b/colab/search/utils.py @@ -21,7 +21,8 @@ def get_collaboration_data(filter_by_user=None): count_types[_('Emails')] = Thread.objects.count() if filter_by_user: - messages = Message.objects.filter(from_address__user__pk=filter_by_user.pk) + messages = Message.objects.filter( + from_address__user__pk=filter_by_user.pk) else: latest_threads = Thread.objects.all()[:6] messages = [t.latest_message for t in latest_threads] -- libgit2 0.21.2