diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e197731..2179422d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,7 @@ The client here will eventually be released as "spython" (and eventually to singularity on pypi), and the versions here will coincide with these releases. ## [master](https://github.com/singularityhub/singularity-cli/tree/master) + - removing debugging line in pull (0.0.70) - adding quiet argument to build to override client (0.0.69) - adding additional options to build to support singularity-compose (0.0.68) - client should support shell (0.0.67) diff --git a/spython/main/pull.py b/spython/main/pull.py index 888a39ea..27cfe189 100644 --- a/spython/main/pull.py +++ b/spython/main/pull.py @@ -58,8 +58,6 @@ def pull(self, if name is None: name = self._get_filename(image, ext) - print('name is %s' % name) - if pull_folder: final_image = os.path.join(pull_folder, os.path.basename(name)) diff --git a/spython/version.py b/spython/version.py index ef8bc258..14aaf98c 100644 --- a/spython/version.py +++ b/spython/version.py @@ -6,7 +6,7 @@ # with this file, You can obtain one at http://mozilla.org/MPL/2.0/. -__version__ = "0.0.69" +__version__ = "0.0.70" AUTHOR = 'Vanessa Sochat' AUTHOR_EMAIL = 'vsochat@stanford.edu' NAME = 'spython'