Skip to content

Commit 9cb77bf

Browse files
committed
feat(deis/config): remove "===" when listing configs with --oneline
This makes it easier to transfer configs from one app to another. See: #3016 for reference.
1 parent e2e33ad commit 9cb77bf

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

client/deis.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -995,7 +995,9 @@ def config_list(self, args):
995995
if response.status_code == requests.codes.ok:
996996
config = response.json()
997997
values = config['values']
998-
self._logger.info("=== {} Config".format(app))
998+
if not oneline:
999+
self._logger.info("=== {} Config".format(app))
1000+
9991001
items = values.items()
10001002
if len(items) == 0:
10011003
self._logger.info('No configuration')

0 commit comments

Comments
 (0)