Skip to content
Snippets Groups Projects
Commit 1e881f3f authored by David Trattnig's avatar David Trattnig
Browse files

Fixed config initialization.

parent 6d01b0dd
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/python3.5 #!/usr/bin/python3.6
# #
# engine # engine
...@@ -36,14 +36,13 @@ from libraries.exceptions.auraexceptions import PlaylistException ...@@ -36,14 +36,13 @@ from libraries.exceptions.auraexceptions import PlaylistException
from libraries.base.config import AuraConfig from libraries.base.config import AuraConfig
class Guru(AuraConfig): class Guru():
config = AuraConfig("/etc/aura/engine.ini")
parser = None parser = None
args = None args = None
# ------------------------------------------------------------------------------------------ # # ------------------------------------------------------------------------------------------ #
def __init__(self): def __init__(self):
super(Guru, self).__init__()
self.init_argument_parser() self.init_argument_parser()
self.handle_arguments() self.handle_arguments()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment