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 6d3b6bc commit bf35e28Copy full SHA for bf35e28
ibllib/pipes/ephys_tasks.py
@@ -619,7 +619,7 @@ def _fetch_iblsorter_run_version(log_file):
619
line = fid.readline()
620
version = re.search('version (.*), output', line)
621
version = version or re.search('version (.*)', line) # old versions have output, new have a version line
622
- version = re.sub('\\^[[0-9]+m', '', version.group(1)) # removes the coloring tags
+ version = re.sub(r'\^\[{2}[0-9]+m', '', version.group(1)) # removes the coloring tags
623
return version
624
625
def _run_iblsort(self, ap_file):
0 commit comments