Commit 4470b376 authored by Tristan Gingold's avatar Tristan Gingold

deplete manifest_parser/__init__.py

parent 60185913
...@@ -30,7 +30,7 @@ import logging ...@@ -30,7 +30,7 @@ import logging
from hdlmake.util import shell from hdlmake.util import shell
from hdlmake.util.termcolor import colored from hdlmake.util.termcolor import colored
from .manifest_parser import ManifestParser from .manifest_parser.variables import ManifestParser
from .action.core import ActionCore from .action.core import ActionCore
from ._version import __version__ from ._version import __version__
......
"""Python Package providing the Manifest.py parser for HDLMake""" """Python Package providing the Manifest.py parser for HDLMake"""
from .variables import ManifestParser
...@@ -34,7 +34,7 @@ import logging ...@@ -34,7 +34,7 @@ import logging
from hdlmake.util import path as path_mod from hdlmake.util import path as path_mod
from hdlmake.util import shell from hdlmake.util import shell
from hdlmake.manifest_parser import ManifestParser from hdlmake.manifest_parser.variables import ManifestParser
from .content import ModuleContent, ModuleArgs from .content import ModuleContent, ModuleArgs
import six import six
...@@ -121,10 +121,8 @@ PARSE START: %s ...@@ -121,10 +121,8 @@ PARSE START: %s
manifest_parser = ManifestParser() manifest_parser = ManifestParser()
manifest_parser.add_prefix_code( manifest_parser.add_prefix_code(self.pool.options.prefix_code)
self.pool.options.prefix_code) manifest_parser.add_suffix_code(self.pool.options.suffix_code)
manifest_parser.add_suffix_code(
self.pool.options.suffix_code)
parser_tmp = manifest_parser.add_manifest(self.path) parser_tmp = manifest_parser.add_manifest(self.path)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment