Skip to content

Commit

Permalink
mode names may be upper case
Browse files Browse the repository at this point in the history
  • Loading branch information
jabdoa2 committed Jun 28, 2018
1 parent 3f9bb96 commit 8971511
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mpf/core/mode.py
Expand Up @@ -48,7 +48,7 @@ def __init__(self, machine: "MachineController", config, name: str, path) -> Non
super().__init__()
self.machine = machine # type: MachineController
self.config = config # type: ignore
self.name = name.lower()
self.name = name
self.path = path
self.priority = 0
self._active = False
Expand Down

0 comments on commit 8971511

Please sign in to comment.