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
commitb3b98ca18ac09714e2754cfd09a7c053833471ec (patch)
tree9624a60ba7488c8506470c76679cc9af3a386664 /lib
parent95affae067db653c1e585dd3739c1c97a40ed5f1 (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