Skip to content

Commit a84060d

Browse files
committed
fixing client
1 parent db78211 commit a84060d

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
# Singularity Python
22

3-
Singularity Python is the Python API for working with <a href="https://singularityware.github.io" target="_blank">Singularity</a> containers. See
3+
Singularity Python (spython) is the Python API for working with <a href="https://singularityware.github.io" target="_blank">Singularity</a> containers. See
44
the [documentation](https://singularityhub.github.io/singularity-cli) for installation and usage.
55

6-
We provide a [Singularity](Singularity) recipe for you to use if more convenient, along with the [full modules docstring](https://singularityhub.github.io/singularity-cli/api/source/spython.main.base.html#module-spython.main.base). This formatting will improve.
6+
We provide a [Singularity](Singularity) recipe for you to use if more convenient, along with the [full modules docstring](https://singularityhub.github.io/singularity-cli/api/source/spython.main.base.html#module-spython.main.base).
77

88
## License
9+
910
This code is licensed under the Affero GPL, version 3.0 or later [LICENSE](LICENSE).
1011

1112
## Help and Contribution

spython/client/shell.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def bpython(image):
7373
client.DockerRecipe = DockerRecipe
7474
client.SingularityRecipe = SingularityRecipe
7575

76-
bpython.embed(locals_={'client': cli})
76+
bpython.embed(locals_={'client': client})
7777

7878
def python(image):
7979
import code
@@ -87,4 +87,4 @@ def python(image):
8787
client.DockerRecipe = DockerRecipe
8888
client.SingularityRecipe = SingularityRecipe
8989

90-
code.interact(local={"client":cli})
90+
code.interact(local={"client":client})

0 commit comments

Comments
 (0)