Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion jupyter_c_kernel/install_c_kernel
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def install_my_kernel_spec(user=True, prefix=None):
# TODO: Copy resources once they're specified

print('Installing IPython kernel spec')
KernelSpecManager().install_kernel_spec(td, 'c', user=user, replace=True, prefix=prefix)
KernelSpecManager().install_kernel_spec(td, 'c', user=user, prefix=prefix)


def _is_root():
Expand Down
2 changes: 1 addition & 1 deletion jupyter_c_kernel/kernel.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class CKernel(Kernel):
implementation_version = '1.0'
language = 'c'
language_version = 'C11'
language_info = {'name': 'c',
language_info = {'name': 'text/x-csrc',
'mimetype': 'text/plain',
'file_extension': '.c'}
banner = "C kernel.\n" \
Expand Down