From 61cf4c20276aa327d2358046029d7892a1c5c182 Mon Sep 17 00:00:00 2001 From: bk2zsto Date: Fri, 9 May 2014 21:11:33 -0400 Subject: [PATCH] load error msg --- speedtest_cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/speedtest_cli.py b/speedtest_cli.py index d6b1722..324a1aa 100755 --- a/speedtest_cli.py +++ b/speedtest_cli.py @@ -676,7 +676,7 @@ def speedtest(): found = imp.find_module(args.resultlog) logmodule = imp.load_module(args.resultlog, found) except ImportError: - print_('Load log module (%s) failed.' % args.resultlog), + print_('Log module (%s) failed. Not logging.' % args.resultlog), sys.exit(1) result = {'dlspeed': dlspeed, 'ulspeed': ulspeed}