diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2009-08-14 16:14:48 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2009-08-14 16:14:48 +0200 |
commit | a16cc9501a2a9b7910124caf11b77568e801433b (patch) | |
tree | c7d3e6624a066518879e18f434cbbe8722fe023d /portato/eix/parser.py | |
parent | 0e6702e069aeabcd995b8968d0ebbc1593d59bf6 (diff) | |
download | portato-a16cc9501a2a9b7910124caf11b77568e801433b.tar.gz portato-a16cc9501a2a9b7910124caf11b77568e801433b.tar.bz2 portato-a16cc9501a2a9b7910124caf11b77568e801433b.zip |
Add 'skip' parameter to header ... this is ignored though
Diffstat (limited to 'portato/eix/parser.py')
-rw-r--r-- | portato/eix/parser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/portato/eix/parser.py b/portato/eix/parser.py index 90c569b..ebf2566 100644 --- a/portato/eix/parser.py +++ b/portato/eix/parser.py @@ -119,7 +119,7 @@ class LazyElement (object): return self.value class header (object): - def __init__ (self, file): + def __init__ (self, file, skip = False): def LE (t): return LazyElement(t, file) |