Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
H
Hdlmake
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
15
Issues
15
List
Board
Labels
Milestones
Merge Requests
2
Merge Requests
2
Wiki
Wiki
image/svg+xml
Discourse
Discourse
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Projects
Hdlmake
Commits
e1d56648
Commit
e1d56648
authored
Oct 04, 2019
by
Tristan Gingold
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
module: refactoring.
parent
921fc7b5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
9 deletions
+2
-9
content.py
hdlmake/module/content.py
+2
-1
module.py
hdlmake/module/module.py
+0
-8
No files found.
hdlmake/module/content.py
View file @
e1d56648
...
...
@@ -28,7 +28,8 @@ class ModuleContent(ModuleConfig):
super
(
ModuleContent
,
self
)
.
__init__
()
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_files
()
self
.
_process_manifest_modules
()
...
...
hdlmake/module/module.py
View file @
e1d56648
...
...
@@ -73,14 +73,6 @@ class Module(ModuleContent):
command_tmp
=
shell
.
rmdir_command
()
+
" "
+
self
.
path
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
):
"""
Create a dictionary from the module Manifest.py and assign it
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment