diff --git a/python/obitools3/commands/check.pyx b/python/obitools3/commands/check.pyx index d72b128..d1db019 100644 --- a/python/obitools3/commands/check.pyx +++ b/python/obitools3/commands/check.pyx @@ -49,7 +49,7 @@ def run(config): # Open input view uif there is one if config['obi']['inputview'] is not None : - iview = View.open(d, config['obi']['inputview']) + iview = View.open(d, config['obi']['view']) print(repr(iview)) else : diff --git a/python/obitools3/commands/less.pyx b/python/obitools3/commands/less.pyx index 175b814..7a15f74 100644 --- a/python/obitools3/commands/less.pyx +++ b/python/obitools3/commands/less.pyx @@ -47,7 +47,7 @@ def run(config): d = DMS.open(config['obi']['defaultdms']) # Open input view - iview = View.open(d, config['obi']['inputview']) + iview = View.open(d, config['obi']['view']) # Print for i in range(config['less']['print']) :