Skip to content

Commit 70e6d88

Browse files
committed
adding missing import of tempfile in image.export
1 parent 3bd189c commit 70e6d88

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ The client here will eventually be released as "spython" (and eventually to
1717
singularity on pypi), and the versions here will coincide with these releases.
1818

1919
## [master](https://github.com/singularityhub/singularity-cli/tree/master)
20+
- adding missing import of tempfile in image.export (0.0.33)
2021
- bug with Client.version() (0.0.32)
2122
- fixing bugs with import, export, image commands (0.0.31)
2223
- adding tests for client (0.0.30)

spython/main/image/export.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818

1919

2020
from spython.logger import bot
21+
import tempfile
2122

2223
def export(self, image_path, tmptar=None):
2324
'''export will export an image, sudo must be used.

spython/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919

2020

21-
__version__ = "0.0.32"
21+
__version__ = "0.0.33"
2222
AUTHOR = 'Vanessa Sochat'
2323
AUTHOR_EMAIL = '[email protected]'
2424
NAME = 'spython'

0 commit comments

Comments
 (0)