##// END OF EJS Templates
remove nag screen delay...
Paul Ivanov -
Show More
@@ -202,12 +202,8 b' class BaseIPythonApplication(Application):'
202 import time
202 import time
203 self.log.warning("Subcommand `ipython {sub}` is deprecated and will be removed "
203 self.log.warning("Subcommand `ipython {sub}` is deprecated and will be removed "
204 "in future versions.".format(sub=subc))
204 "in future versions.".format(sub=subc))
205 self.log.warning("You likely want to use `jupyter {sub}`... continue "
205 self.log.warning("You likely want to use `jupyter {sub}`... in the"
206 "in 5 sec. Press Ctrl-C to quit now.".format(sub=subc))
206 "future".format(sub=subc))
207 try:
208 time.sleep(5)
209 except KeyboardInterrupt:
210 sys.exit(1)
211 return super(BaseIPythonApplication, self).initialize_subcommand(subc, argv)
207 return super(BaseIPythonApplication, self).initialize_subcommand(subc, argv)
212
208
213 def init_crash_handler(self):
209 def init_crash_handler(self):
General Comments 0
You need to be logged in to leave comments. Login now