3
0
mirror of https://github.com/jlu5/PyLink.git synced 2024-11-01 01:09:22 +01:00

conf: remove ancient migration note from PyLink 0.9.x

This commit is contained in:
James Lu 2017-07-12 22:24:59 -07:00
parent 69bafedcca
commit fceb2efce4

View File

@ -122,7 +122,6 @@ def loadConf(filename, errors_fatal=True, logger=None):
conf = validateConf(conf, logger=logger) conf = validateConf(conf, logger=logger)
except Exception as e: except Exception as e:
print('ERROR: Failed to load config from %r: %s: %s' % (filename, type(e).__name__, e), file=sys.stderr) print('ERROR: Failed to load config from %r: %s: %s' % (filename, type(e).__name__, e), file=sys.stderr)
print(' Users upgrading from users < 0.9-alpha1 should note that the default configuration has been renamed to *pylink.yml*, not *config.yml*', file=sys.stderr)
if errors_fatal: if errors_fatal:
sys.exit(1) sys.exit(1)