Skip to content

Commit

Permalink
fix info issue
Browse files Browse the repository at this point in the history
  • Loading branch information
karmab committed Apr 16, 2020
1 parent fb2b3d6 commit 72e0446
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kvirt/baseconfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -566,7 +566,7 @@ def info_plan(self, inputfile, quiet=False, web=False, onfly=None, doc=False):
del parameters['description']
info = parameters.get('info')
if info is not None:
common.pprint("info: %s" % info.strip(), color='blue')
common.pprint(info.strip(), color='blue')
del parameters['info']
if web:
return parameters
Expand Down Expand Up @@ -942,7 +942,7 @@ def create_pipeline(self, inputfile, overrides={}, kube=False):

def info_kube_generic(self, quiet):
plandir = os.path.dirname(kubeadm.create.__code__.co_filename)
inputfile = '%s/kcli_plan.yml' % plandir
inputfile = '%s/masters.yml' % plandir
self.info_plan(inputfile, quiet=quiet)

def info_kube_openshift(self, quiet):
Expand Down

0 comments on commit 72e0446

Please sign in to comment.