[core] Remove alias from module

Hide alias concept for modules in the engine. That way, the individual
modules never get to know about whether a module has been aliased or
not.

see #23
This commit is contained in:
Tobi-wan Kenobi 2016-12-02 18:53:34 +01:00
parent f306366629
commit 2f3f171ca5
21 changed files with 48 additions and 45 deletions

View file

@ -59,8 +59,8 @@ def get_dnf_info(obj):
obj.set("other", other)
class Module(bumblebee.module.Module):
def __init__(self, output, config, alias):
super(Module, self).__init__(output, config, alias)
def __init__(self, output, config):
super(Module, self).__init__(output, config)
self._counter = {}
self._thread = threading.Thread(target=get_dnf_info, args=(self,))