We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0506af commit 581296eCopy full SHA for 581296e
1 file changed
labgrid/driver/sigrokdriver.py
@@ -212,7 +212,7 @@ def stop(self):
212
def analyze(self, args, filename=None):
213
annotation_regex = re.compile(r'(?P<startnum>\d+)-(?P<endnum>\d+) (?P<decoder>[\w\-]+): (?P<annotation>[\w\-]+): (?P<data>".*)') # pylint: disable=line-too-long
214
if not filename and self._filename:
215
- filename = self._filename
+ filename = os.path.join(self._tmpdir, self._basename)
216
else:
217
filename = os.path.abspath(filename)
218
check_file(filename, command_prefix=self.sigrok.command_prefix)
0 commit comments