main: Remove warnings if old settings dirs and files exists

This commit is contained in:
Stein Magnus Jodal 2015-08-23 17:33:51 +02:00
parent 9033bebf1a
commit d74f47ad58
2 changed files with 15 additions and 17 deletions

View File

@ -5,6 +5,21 @@ Changelog
This changelog is used to track all major changes to Mopidy.
v1.2.0 (UNRELEASED)
===================
Feature release.
Cleanups
--------
- Removed warning if :file:`~/.mopidy` exists. We stopped using this location
in 0.6, released in October 2011.
- Removed warning if :file:`~/.config/mopidy/settings.py` exists. We stopped
using this settings file in 0.14, released in April 2013.
v1.1.1 (UNRELEASED)
===================

View File

@ -83,7 +83,6 @@ def main():
create_core_dirs(config)
create_initial_config_file(args, extensions_data)
check_old_locations()
verbosity_level = args.base_verbosity_level
if args.verbosity_level:
@ -191,22 +190,6 @@ def create_initial_config_file(args, extensions_data):
config_file, encoding.locale_decode(error))
def check_old_locations():
dot_mopidy_dir = path.expand_path(b'~/.mopidy')
if os.path.isdir(dot_mopidy_dir):
logger.warning(
'Old Mopidy dot dir found at %s. Please migrate your config to '
'the ini-file based config format. See release notes for further '
'instructions.', dot_mopidy_dir)
old_settings_file = path.expand_path(b'$XDG_CONFIG_DIR/mopidy/settings.py')
if os.path.isfile(old_settings_file):
logger.warning(
'Old Mopidy settings file found at %s. Please migrate your '
'config to the ini-file based config format. See release notes '
'for further instructions.', old_settings_file)
def log_extension_info(all_extensions, enabled_extensions):
# TODO: distinguish disabled vs blocked by env?
enabled_names = set(e.ext_name for e in enabled_extensions)