Skip to content
Snippets Groups Projects
Commit df322491 authored by scott snyder's avatar scott snyder
Browse files

TrigValTools: Python 3 fix

Python 3 iterator fix.
parent d6cb5cd4
No related tags found
No related merge requests found
#!/usr/bin/env python #!/usr/bin/env python
# #
# Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration # Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
# #
import sys import sys
...@@ -27,7 +27,7 @@ def grep_errors(filename): ...@@ -27,7 +27,7 @@ def grep_errors(filename):
lines = [] lines = []
with open(filename) as f: with open(filename) as f:
lines = re.findall(error_pattern, f.read(), re.MULTILINE) lines = re.findall(error_pattern, f.read(), re.MULTILINE)
return filter(filter_fn, lines) return list(filter(filter_fn, lines))
def main(): def main():
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment