From c182a08f3e1578f83d9c024a9c5b404d04afec4b Mon Sep 17 00:00:00 2001 From: schneefux Date: Thu, 2 Oct 2014 15:08:23 +0200 Subject: Transform DiagnosticRunner.run() into a single function --- jasper.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'jasper.py') diff --git a/jasper.py b/jasper.py index 1e3484b..d116ce9 100755 --- a/jasper.py +++ b/jasper.py @@ -138,8 +138,7 @@ if __name__ == "__main__": "running properly.") if args.diagnose: - diag = diagnose.DiagnosticRunner() - failed_checks = diag.run() + failed_checks = diagnose.run() sys.exit(0 if not failed_checks else 1) try: -- cgit v1.3.1