You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by ma...@apache.org on 2019/06/20 18:45:42 UTC

[airavata-django-portal] branch master updated: AIRAVATA-3047 fixing formatting issue

This is an automated email from the ASF dual-hosted git repository.

machristie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airavata-django-portal.git


The following commit(s) were added to refs/heads/master by this push:
     new 5741771  AIRAVATA-3047 fixing formatting issue
5741771 is described below

commit 574177124ba29caee97988c9725e2211f7390ef5
Author: Marcus Christie <ma...@apache.org>
AuthorDate: Thu Jun 20 14:45:30 2019 -0400

    AIRAVATA-3047 fixing formatting issue
---
 django_airavata/apps/api/views.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/django_airavata/apps/api/views.py b/django_airavata/apps/api/views.py
index c6f3ece..4b89615 100644
--- a/django_airavata/apps/api/views.py
+++ b/django_airavata/apps/api/views.py
@@ -1517,7 +1517,7 @@ class UnverifiedEmailUserViewSet(mixins.ListModelMixin,
         if username is not None:
             unverified_emails = unverified_emails.filter(username=username)
         if limit > 0:
-            unverified_emails = unverified_emails[offset:offset+limit]
+            unverified_emails = unverified_emails[offset:offset + limit]
         results = []
         for unverified_email in unverified_emails:
             username = unverified_email['username']