Commit dafa13f2 authored by Tristan Gingold's avatar Tristan Gingold

action: rename core.py to commands.py, empty __init__.py

parent e50d46ae
......@@ -31,7 +31,7 @@ from hdlmake.util import shell
from hdlmake.util.termcolor import colored
from .manifest_parser.variables import ManifestParser
from .action.core import ActionCore
from .action.commands import ActionCore
from ._version import __version__
......
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Copyright (c) 2013, 2014 CERN
# Author: Pawel Szostek (pawel.szostek@cern.ch)
# Multi-tool support by Javier D. Garcia-Lasheras (javier@garcialasheras.com)
#
# This file is part of Hdlmake.
#
# Hdlmake is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Hdlmake is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Hdlmake. If not, see <http://www.gnu.org/licenses/>.
"""The Action package provides the full set of provided user functionalities"""
from .core import ActionCore
from .tree import ActionTree
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