Skip to content

Commit

Permalink
feat(deis/config): remove "===" when listing configs with --oneline
Browse files Browse the repository at this point in the history
This makes it easier to transfer configs from one app to another.
See: deis#3016 for reference.
  • Loading branch information
mwildehahn committed Feb 11, 2015
1 parent e2e33ad commit 9cb77bf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion client/deis.py
Original file line number Diff line number Diff line change
Expand Up @@ -995,7 +995,9 @@ def config_list(self, args):
if response.status_code == requests.codes.ok:
config = response.json()
values = config['values']
self._logger.info("=== {} Config".format(app))
if not oneline:
self._logger.info("=== {} Config".format(app))

items = values.items()
if len(items) == 0:
self._logger.info('No configuration')
Expand Down

0 comments on commit 9cb77bf

Please sign in to comment.