From 65715634e3f75ab582ddcc7515952df551c7258d Mon Sep 17 00:00:00 2001 From: Abhinav Rajagopalan Date: Mon, 11 Jan 2021 18:32:55 +0530 Subject: Fix typo in util.py Fix s/sttderr/stderr typo in line 179 of util.py --- test/harness/util.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test') diff --git a/test/harness/util.py b/test/harness/util.py index f6c2a32..d2a7b63 100644 --- a/test/harness/util.py +++ b/test/harness/util.py @@ -152,7 +152,7 @@ def new_parseArgs(self, argv): # now validate stuff if self.version_request: - print('%s Version %s, harnes version %s' % \ + print('%s Version %s, harness version %s' % \ (prog_name, parent_version, lib_version)) sys.exit(0) Global.verbosity = self.verbosity @@ -176,7 +176,7 @@ def new_parseArgs(self, argv): Global.partition = '%s-part1' % Global.device else: print('Error: must start with "/dev" or "/dev/disk/by-{id,path}": %s' % \ - Global.device, file=sys.sttderr) + Global.device, file=sys.stderr) sys.exit(1) if self.subtest_list: if not user_spec_to_list(self.subtest_list): -- cgit v1.2.1