Skip to content

Commit 1b46c80

Browse files
author
v-reyder
committed
Fix too long line in app.py
1 parent 6a365d4 commit 1b46c80

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

rootfs/api/models/app.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,8 @@ def create(self, *args, **kwargs): # noqa
215215
quota_name = '{}-quota'.format(namespace)
216216
self.log(settings.KUBERNETES_NAMESPACE_DEFAULT_QUOTA_SPEC)
217217
quota_spec = json.loads(settings.KUBERNETES_NAMESPACE_DEFAULT_QUOTA_SPEC)
218-
self.log('creating Quota {} for namespace {}'.format(quota_name, namespace), level=logging.DEBUG)
218+
self.log('creating Quota {} for namespace {}'.format(quota_name, namespace),
219+
level=logging.DEBUG)
219220
try:
220221
self._scheduler.quota.get(namespace, quota_name)
221222
except KubeException:

0 commit comments

Comments
 (0)