Skip to content
Snippets Groups Projects
Commit f106438b authored by Daniel Brown's avatar Daniel Brown
Browse files

Better error messaging

parent e1caf579
No related branches found
No related tags found
No related merge requests found
......@@ -3,7 +3,7 @@ from __future__ import division
from __future__ import print_function
from __future__ import unicode_literals
__version__ = "1.0.1"
__version__ = "1.0.2"
# This flag is used to switch on the gui features in pkat at import time
USE_GUI = False
......
......@@ -1433,7 +1433,8 @@ class kat(object):
pipe_name = katfile.name + str(uuid.uuid4())
cmd=[kat_exec, "--pykat=" + pipe_name]
#cmd=[kat_exec, "--pykat=" + pipe_name]
cmd=[kat_exec, "--perl1"]
if self.__time_code:
cmd.append('--perf-timing')
......@@ -1463,7 +1464,7 @@ class kat(object):
fifo = None
start = time.time()
duration = 5 # Duration for searching for open pipe
duration = 2 # Duration for searching for open pipe
try:
while fifo is None:
......@@ -1473,7 +1474,7 @@ class kat(object):
fifo = open(pipe_name, "r")
self.__looking = False
else:
raise Exception("Could not connect to pykat pipe in {0} seconds. Ensure you are using Finesse >= v2.1 and Pykat >= v1.0.0.".format(duration))
raise pkex.BasePyKatException("Could not connect to pykat pipe in {0} seconds. Ensure you are using Finesse >= v2.1 and Pykat >= v1.0.0.".format(duration))
except FileNotFoundError as ex:
if self.verbose:
if not self.__looking:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment