From 195fdc3cf866ed99cbaaa86d339e609f10177680 Mon Sep 17 00:00:00 2001 From: Doug Blank Date: Tue, 5 Jan 2016 13:17:11 -0500 Subject: [PATCH] Removed should_exit from tests --- gramps/test/test_util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gramps/test/test_util.py b/gramps/test/test_util.py index c0ad0916e..67986794a 100644 --- a/gramps/test/test_util.py +++ b/gramps/test/test_util.py @@ -264,7 +264,7 @@ class Gramps(object): argparser.print_usage() handler = ArgHandler(self.dbstate, argparser, self.climanager) # create a manager to manage the database - handler.handle_args_cli(should_exit=False) + handler.handle_args_cli() return output #===eof===