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
commitaed17cc972fa10c1a98b81a8ac3b662bfb8e9170 (patch)
tree53fdc0b2198161d62ba466258d5f04eb922bde8c /lib
parent943155a78a1a236012db495699ba58b7460d2180 (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