From 228cf27234de7e871fee2ba250d8a7e27774f2c0 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Sat, 5 Jan 2013 09:56:26 +0000 Subject: [PATCH] [molecule.settings] do not filter out duplicated lines, this breaks .spec parsing --- molecule/settings.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/molecule/settings.py b/molecule/settings.py index 32b4d44..7ebfa99 100644 --- a/molecule/settings.py +++ b/molecule/settings.py @@ -335,7 +335,5 @@ class SpecParser: content = [x.strip().rsplit("#", 1)[0].strip() for x in content if \ not x.startswith("#") and x.strip()] for line in content: - if line in data: - continue data.append(line) return data