##// END OF EJS Templates
use 'Python X' for IPython kernel display name...
Min RK -
Show More
@@ -107,10 +107,10 b' class KernelSpecManager(HasTraits):'
107 """Makes a kernel directory for the native kernel.
107 """Makes a kernel directory for the native kernel.
108
108
109 The native kernel is the kernel using the same Python runtime as this
109 The native kernel is the kernel using the same Python runtime as this
110 process. This will put its informatino in the user kernels directory.
110 process. This will put its information in the user kernels directory.
111 """
111 """
112 return {'argv': make_ipkernel_cmd(),
112 return {'argv': make_ipkernel_cmd(),
113 'display_name': 'IPython (Python %d)' % (3 if PY3 else 2),
113 'display_name': 'Python %i' % (3 if PY3 else 2),
114 }
114 }
115
115
116 @property
116 @property
General Comments 0
You need to be logged in to leave comments. Login now