#!/usr/bin/python3
"""Migrate Jupyter config from IPython < 4.0"""

from jupyter_core.migrate import main

if __name__ == '__main__':
    main()
