diff options
author | jose.lausuch <jose.lausuch@ericsson.com> | 2015-06-03 10:38:20 +0200 |
---|---|---|
committer | jose.lausuch <jose.lausuch@ericsson.com> | 2015-06-03 10:38:20 +0200 |
commit | bd52c692b335429df0275eeac31188fe11ecf3a6 (patch) | |
tree | a75bc5366870424e57cc76492c6d55188a25f915 /testcases/functest_utils.py | |
parent | 4f4c9705015237afadfec5a1dfcb0528b4c18c44 (diff) |
functest_utils.py : bugfix: logg-->logger
JIRA: FUNCTEST-10
Change-Id: I6595aecb29b3b6881840a12d5594130fbd9b790e
Signed-off-by: jose.lausuch <jose.lausuch@ericsson.com>
Diffstat (limited to 'testcases/functest_utils.py')
-rw-r--r-- | testcases/functest_utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testcases/functest_utils.py b/testcases/functest_utils.py index f879a1a95..26c1f478f 100644 --- a/testcases/functest_utils.py +++ b/testcases/functest_utils.py @@ -240,6 +240,6 @@ def execute_command(cmd, logger=None): if p == 0 : return True else: - if loger: + if logger: logger.error("Error when executing command %s" %cmd) exit(-1) |