aboutsummaryrefslogtreecommitdiff
path: root/scripts/reqs2tex.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/reqs2tex.py')
-rwxr-xr-xscripts/reqs2tex.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/reqs2tex.py b/scripts/reqs2tex.py
index 1863b0d..0a43acf 100755
--- a/scripts/reqs2tex.py
+++ b/scripts/reqs2tex.py
@@ -73,7 +73,7 @@ def convert(reqs):
reqs = [item for item in reqs if item[KEY.DELETED] == False]
# sort by label
- reqs = sorted(reqs, key=lambda req: req[KEY.LABEL])
+ reqs = sorted(reqs, key=lambda item: item[KEY.LABEL])
return reqs