summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorEmilio Pozuelo Monfort <pochu@debian.org>2020-12-01 13:08:57 +0100
committerEmilio Pozuelo Monfort <pochu@debian.org>2020-12-02 09:32:38 +0100
commit843e1741d40247adfac96f5380709d5e0bc1a146 (patch)
treea3bae4b6b9ee7f4ecc3e6d199781aaf79f5c2356 /lib
parent947c891185eca45e52662e2b1920ebfeb43b71d2 (diff)
sectracker.parsers: don't sort the xrefs
Take them as they come, as our sorting is different than the one in the file.
Diffstat (limited to 'lib')
-rw-r--r--lib/python/sectracker/parsers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/sectracker/parsers.py b/lib/python/sectracker/parsers.py
index 49bc37190b..8963a80df6 100644
--- a/lib/python/sectracker/parsers.py
+++ b/lib/python/sectracker/parsers.py
@@ -158,7 +158,7 @@ def _annotationdispatcher():
@_regexpcase.rule(r'\{(.*)\}')
def xref(groups, diag):
- x = _sortedtuple(groups[0].strip().split())
+ x = tuple(groups[0].strip().split())
if x:
return XrefAnnotation(diag.line(), "xref", x)
else:

© 2014-2024 Faster IT GmbH | imprint | privacy policy