Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2e41bfcb authored by Adam Tauber's avatar Adam Tauber
Browse files

[enh] engine shortcut validation

parent 7eb27848
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -81,7 +81,8 @@ def load_engine(engine_data):
        if engine_attr.startswith('_'):
            continue
        if getattr(engine, engine_attr) is None:
            print '[E] Engine config error: Missing attribute "{0}.{1}"'.format(engine.name, engine_attr)  # noqa
            print('[E] Engine config error: Missing attribute "{0}.{1}"'\
                  .format(engine.name, engine_attr))
            sys.exit(1)

    engine.stats = {
@@ -100,6 +101,10 @@ def load_engine(engine_data):

    if engine.shortcut:
        # TODO check duplications
        if engine.shortcut in engine_shortcuts:
            print('[E] Engine config error: ambigious shortcut: {0}'\
                  .format(engine.shortcut))
            sys.exit(1)
        engine_shortcuts[engine.shortcut] = engine.name
    return engine