From f702860a17c3778182286967ddde50d45299f221 Mon Sep 17 00:00:00 2001
From: Tamas Gal <tgal@km3net.de>
Date: Sun, 19 Jul 2020 11:15:32 +0200
Subject: [PATCH] Minor cosmetics

---
 setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/setup.py b/setup.py
index cca0d71..332d0a3 100644
--- a/setup.py
+++ b/setup.py
@@ -11,7 +11,7 @@ import sys
 def read_stripped_lines(filename):
     """Return a list of stripped lines from a file"""
     with open(filename) as fobj:
-        return [l.strip() for l in fobj.readlines()]
+        return [line.strip() for line in fobj.readlines()]
 
 
 try:
-- 
GitLab