Skip to content

Commit

Permalink
removed double quote
Browse files Browse the repository at this point in the history
  • Loading branch information
knmcguire committed Jan 24, 2022
1 parent a372ebd commit 3349068
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cfclient/ui/tabs/QualisysTab.py
Original file line number Diff line number Diff line change
Expand Up @@ -798,7 +798,7 @@ async def setup_qtm_connection(self):

# Parse the returned xml
xml = ET.fromstring(result)
self.qtm_6DoF_labels = [label.text.strip() for index, label in enumerate(xml.findall("*/Body/Name"))]
self.qtm_6DoF_labels = [label.text.strip() for index, label in enumerate(xml.findall('*/Body/Name'))]

# Make all names lowercase
self.qtm_6DoF_labels = [x.lower() for x in self.qtm_6DoF_labels]
Expand Down

0 comments on commit 3349068

Please sign in to comment.