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

Some fixes to resolve errors on initial run. Fixes #57 #86

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
1 change: 1 addition & 0 deletions bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ pip_install_opt -U "Tempita>=0.5.1"
pip_install_opt -U "APScheduler>=2.0.2,<3"
pip_install_opt -U "waitress>=0.8.2"
pip_install_opt -U "WebOb>=1.2.3"
pip_install_opt -U "prompt_toolkit>=1.0.15"
##pip_install_opt -U "psutil>=0.6.1"

# pyrobase
Expand Down
2 changes: 1 addition & 1 deletion src/pyrocore/scripts/rtxmlrpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ def do_repl(self):
from prompt_toolkit import prompt
from prompt_toolkit.history import FileHistory
from prompt_toolkit.auto_suggest import AutoSuggestFromHistory
from prompt_toolkit.contrib.completers import WordCompleter
from prompt_toolkit.completion import WordCompleter

self.options.quiet = False
proxy = self.open()
Expand Down