From 05ce571e3e191046ebd8251aca95511e4d6a7f02 Mon Sep 17 00:00:00 2001 From: Joseph Schorr Date: Thu, 23 Mar 2017 11:11:21 -0400 Subject: [PATCH] Add missing return statement --- data/interfaces/appr.py | 1 + 1 file changed, 1 insertion(+) diff --git a/data/interfaces/appr.py b/data/interfaces/appr.py index 504293398..fcf42b2e6 100644 --- a/data/interfaces/appr.py +++ b/data/interfaces/appr.py @@ -207,6 +207,7 @@ class OCIAppModel(AppRegistryDataInterface): repo = model.repository.get_app_repository(ns, name) if repo is None: raise_package_not_found(package) + return repo def list_applications(self, namespace=None, media_type=None, search=None, username=None, with_channels=False):