Commit 889845e1 by Bálint Máhonfai

Revert "Fix flake8 warnings"

This reverts commit 9364b342
parent 9364b342
Pipeline #920 passed with stage
in 0 seconds
......@@ -35,8 +35,7 @@ from django.views.generic import TemplateView
from braces.views import LoginRequiredMixin
from ..store_api import (Store, NoStoreException,
NotOkException, NoOrgIdException)
from ..store_api import Store, NoStoreException, NotOkException
logger = logging.getLogger(__name__)
......@@ -71,11 +70,6 @@ class StoreList(LoginRequiredMixin, TemplateView):
return super(StoreList, self).get(*args, **kwargs)
except NoStoreException:
messages.warning(self.request, _("No store."))
except NoOrgIdException:
messages.warning(self.request,
_("Your organization ID is not set."
" To use the store, you need a"
" unique organization ID."))
except NotOkException:
messages.warning(self.request, _("Store has some problems now."
" Try again later."))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment