Projet

Général

Profil

0001-misc-use-IPython.start_ipython-43488.patch

Benjamin Dauvergne, 29 mai 2020 21:17

Télécharger (800 octets)

Voir les différences:

Subject: [PATCH] misc: use IPython.start_ipython() (#43488)

 wcs/ctl/shell.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
wcs/ctl/shell.py
85 85

  
86 86
    def ipython(self):
87 87
        try:
88
            from IPython import embed
89
            embed()
88
            from IPython import start_ipython
89
            start_ipython([])
90 90
        except ImportError:
91 91
            # IPython < 0.11
92 92
            # Explicitly pass an empty list as arguments, because otherwise
93
-