From 7b8505af6c74abd98462662acda0b2dbb46c328d Mon Sep 17 00:00:00 2001 From: Ben Connors Date: Mon, 2 Dec 2019 23:54:08 -0500 Subject: Tech run fixes --- interface/__main__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'interface/__main__.py') diff --git a/interface/__main__.py b/interface/__main__.py index b2f45fe..878b263 100644 --- a/interface/__main__.py +++ b/interface/__main__.py @@ -4,9 +4,9 @@ import sys from .interface import Interface from .ola import OLAOutput -from .dummy import DummyOutput +#from .dummy import DummyOutput if len(sys.argv) > 2: raise ValueError("Usage: %s [workspace file]" % sys.argv[0]) -Interface(sys.argv[1] if len(sys.argv) == 2 else None, DummyOutput()).main() +Interface(sys.argv[1] if len(sys.argv) == 2 else None, OLAOutput()).main() -- cgit v1.2.3