diff options
| author | Sean Brant | 2013-03-10 19:58:54 -0500 |
|---|---|---|
| committer | Sean Brant | 2013-03-10 19:58:54 -0500 |
| commit | 9ad7a3fc99ecd77e215a9422fd05ed5da6a3f841 (patch) | |
| tree | 0bd509afb7209933c0bd9f454b5e3c033e2581cd | |
| parent | 9c3dc9d0cbec80f2417feb7e34c92c1c72a4bcf2 (diff) | |
| download | pykss-9ad7a3fc99ecd77e215a9422fd05ed5da6a3f841.tar.bz2 | |
removes unneeded call
| -rw-r--r-- | pykss/parser.py | 1 | ||||
| -rw-r--r-- | setup.py | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/pykss/parser.py b/pykss/parser.py index b306b62..fe18c9f 100644 --- a/pykss/parser.py +++ b/pykss/parser.py @@ -21,7 +21,6 @@ class Parser(object): parser = CommentParser(filename) for block in parser.blocks: section = Section(block, os.path.basename(filename)) - section.parse() if section.section: sections[section.section] = section @@ -4,7 +4,7 @@ from setuptools import setup, find_packages setup( name='pykss', - version='0.2', + version='0.2.1', description='Python implementation of KSS', long_description=open('README.rst').read(), author='Sean Brant', |
