Commit e1d56648 authored by Tristan Gingold's avatar Tristan Gingold

module: refactoring.

parent 921fc7b5
...@@ -28,7 +28,8 @@ class ModuleContent(ModuleConfig): ...@@ -28,7 +28,8 @@ class ModuleContent(ModuleConfig):
super(ModuleContent, self).__init__() super(ModuleContent, self).__init__()
def process_manifest(self): def process_manifest(self):
"""Process the content section of the manifest_dic""" """Process the content section of the manifest_dict"""
logging.debug("Process manifest at: " + os.path.dirname(self.path))
self._process_manifest_universal() self._process_manifest_universal()
self._process_manifest_files() self._process_manifest_files()
self._process_manifest_modules() self._process_manifest_modules()
......
...@@ -73,14 +73,6 @@ class Module(ModuleContent): ...@@ -73,14 +73,6 @@ class Module(ModuleContent):
command_tmp = shell.rmdir_command() + " " + self.path command_tmp = shell.rmdir_command() + " " + self.path
shell.run(command_tmp) shell.run(command_tmp)
def process_manifest(self):
"""
This method processes the different manifest dictionary sections
contained in the action specific inherited Python modules.
"""
logging.debug("Process manifest at: " + os.path.dirname(self.path))
super(Module, self).process_manifest()
def parse_manifest(self): def parse_manifest(self):
""" """
Create a dictionary from the module Manifest.py and assign it Create a dictionary from the module Manifest.py and assign it
......
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