Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PR: Minor fix for a typo and a comment formatting #82

Merged
merged 2 commits into from
Jul 13, 2017
Merged
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 spyder_notebook/tests/test_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def test_hide_header(qtbot):
# Create notebook
notebook = setup_notebook(qtbot)

# Wait for prompt
# Wait for prompt
nbwidget = notebook.get_current_nbwidget()
qtbot.waitUntil(lambda: prompt_present(nbwidget), timeout=NOTEBOOK_UP)

Expand Down
2 changes: 1 addition & 1 deletion spyder_notebook/widgets/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def show_kernel_error(self, error):
# From http://stackoverflow.com/q/7691569/438386
error = error.replace('-', '&#8209')

message = _("An error ocurred while starting the kernel")
message = _("An error occurred while starting the kernel")
kernel_error_template = Template(KERNEL_ERROR)
page = kernel_error_template.substitute(css_path=CSS_PATH,
message=message,
Expand Down