summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pyp2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyp b/pyp
index a2cee27..99090a2 100644
--- a/pyp
+++ b/pyp
@@ -670,7 +670,7 @@ class Pyp(object):
'mm' : comma,
}
#gets rid of empty fields
- split_variables = dict((x, PypList([PypStr(y) for y in split_variables_raw[x] if y.strip()])) for x in split_variables_raw)
+ split_variables = dict((x, PypList([PypStr(y) for y in split_variables_raw[x]])) for x in split_variables_raw)
return split_variables
def join_and_format(self, join_type):