changeset 737:8b3dfd91cbf6

cm: Fix `setup.py` script.
author Ludovic Chabant <ludovic@chabant.com>
date Wed, 01 Jun 2016 23:15:07 -0700
parents 13ec290bfc13
children b91fe30ae7aa
files setup.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/setup.py	Wed Jun 01 22:46:11 2016 -0700
+++ b/setup.py	Wed Jun 01 23:15:07 2016 -0700
@@ -16,7 +16,7 @@
 
 
 def readlines(fname):
-    lines = [l.strip() for l in read(fname).strip().splitlines()]
+    return [l.strip() for l in read(fname).strip().splitlines()]
 
 
 def runcmd(cmd):