Skip to content

Commit 8e7c731

Browse files
committed
Bugfix: typos. Perils of multilanguage confusion.
Signed-off-by: Henry Cox <[email protected]>
1 parent 70a44f8 commit 8e7c731

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bin/xml2lcovutil.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,13 +129,13 @@ def process_xml_file(self, xml_file):
129129
if self._args.verbose:
130130
print("source: " + source.text)
131131
else:
132-
print("Error: parse xml fail: no 'sources' in $s" %(xml_file))
132+
print("Error: parse xml fail: no 'sources' in %s" %(xml_file))
133133
sys.exit(1)
134134
if(root[1].tag == 'packages'):
135135
if (self._args.verbose):
136136
print("packages: " + str(root[1].attrib))
137137
else:
138-
print("Error: parse xml fail: no 'packages' in $s" %(xml_file))
138+
print("Error: parse xml fail: no 'packages' in %s" %(xml_file))
139139
sys.exit(1)
140140
except Exception as err:
141141
print("Error: parse xml fail in %s: %s" % (xml_file, str(err)))

0 commit comments

Comments
 (0)