Remove some debugging prints
This commit is contained in:
parent
491ac113fb
commit
fe3bebc609
|
@ -138,11 +138,9 @@ def uses(pl, args):
|
||||||
for sh in (shell, 'shell') if shell else ('shell'):
|
for sh in (shell, 'shell') if shell else ('shell'):
|
||||||
varname = template.format(shell=sh.upper(), component=component.upper())
|
varname = template.format(shell=sh.upper(), component=component.upper())
|
||||||
if os.environ.get(varname):
|
if os.environ.get(varname):
|
||||||
print ('HERE')
|
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
config = get_main_config(args)
|
config = get_main_config(args)
|
||||||
if component in config.get('ext', {}).get('shell', {}).get('components', ('tmux', 'prompt')):
|
if component in config.get('ext', {}).get('shell', {}).get('components', ('tmux', 'prompt')):
|
||||||
sys.exit(0)
|
sys.exit(0)
|
||||||
else:
|
else:
|
||||||
print ('THERE')
|
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
Loading…
Reference in New Issue