Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
toomanybrians committed Mar 13, 2016
1 parent 31582df commit 9c85ee2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions mpfmc/_version.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
__version__ = '0.30.0.dev246'
__version__ = '0.30.0.dev264'
__bcp_version__ = '1.0'
__config_version__ = '3'
__mpf_version_required__ = '0.30.0.dev614'
__mpf_version_required__ = '0.30.0.dev670'

version = "MPF-MC v{} (config_version={}, BCP v{}, Requires MPF v{})".format(
__version__, __config_version__, __bcp_version__, __mpf_version_required__)
3 changes: 3 additions & 0 deletions mpfmc/core/mc_config_player.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ class McConfigPlayer(ConfigPlayer):
show_players = dict()
config_file_players = dict()

def __repr__(self):
return 'McConfigPlayer.{}'.format(self.show_section)

def _initialize(self):
if self.machine_collection_name:
self.device_collection = getattr(self.machine,
Expand Down
2 changes: 0 additions & 2 deletions mpfmc/core/mode_controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,6 @@ def _load_mode(self, mode_string):
"folder in your machine's 'modes' folder?"
.format(mode_string))

print(mode_path)

# Is there an MPF default config for this mode? If so, load it first
try:
mpf_mode_config = os.path.join(
Expand Down

0 comments on commit 9c85ee2

Please sign in to comment.