From d4b86dc3e810fc0c7d3a3cb0040427707fce191d 2011-07-04 22:11:43 From: Thomas Kluyver Date: 2011-07-04 22:11:43 Subject: [PATCH] Silence deletion of old default config files. --- diff --git a/IPython/utils/path.py b/IPython/utils/path.py index c88c6f5..8709f02 100644 --- a/IPython/utils/path.py +++ b/IPython/utils/path.py @@ -433,7 +433,6 @@ def check_for_old_config(ipython_dir=None): if os.path.exists(f): if filehash(f) == old_config_md5.get(cfg, ''): os.unlink(f) - warn.info("Removed unmodified old IPython config file %r"%f) else: warned = True warn.warn("Found old IPython config file %r (modified by user)"%f)