Skip to content
This repository has been archived by the owner on Mar 15, 2021. It is now read-only.

Commit

Permalink
fixing some old issues with workbench_cli pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
brifordwylie committed Jan 3, 2015
1 parent 3ef8416 commit ecab80e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion workbench_apps/setup.py
Expand Up @@ -23,7 +23,7 @@
author_email='support@supercowpowers.com',
url='http://github.com/SuperCowPowers/workbench',
packages=['workbench_cli'],
package_dir={'workbench': 'workbench_cli'},
package_dir={'workbench_cli': 'workbench_cli'},
include_package_data=True,
scripts=['workbench_cli/workbench'],
install_requires=['funcsigs', 'ipython', 'lz4',
Expand Down
4 changes: 2 additions & 2 deletions workbench_apps/workbench_cli/config.ini
Expand Up @@ -4,8 +4,8 @@
# Server URI (server machine ip or name)
# Default: localhost
# Example: mybigserver or 12.34.56.789
# server_uri = workbenchserver.com
server_uri = localhost
server_uri = workbenchserver.com
# server_uri = localhost

# Server Port
# Default: 4242
Expand Down
2 changes: 1 addition & 1 deletion workbench_apps/workbench_cli/workbench
Expand Up @@ -3,7 +3,7 @@

"""Workbench Interactive Shell using IPython"""

from workbench_apps.workbench_cli import workbench_shell
from workbench_cli import workbench_shell

def run():
work_shell = workbench_shell.WorkbenchShell()
Expand Down

0 comments on commit ecab80e

Please sign in to comment.