File tree Expand file tree Collapse file tree 3 files changed +6
-5
lines changed
Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -17,8 +17,9 @@ The client here will eventually be released as "spython" (and eventually to
1717singularity on pypi), and the versions here will coincide with these releases.
1818
1919## [ master] ( https://github.com/singularityhub/singularity-cli/tree/master )
20- - ensure options and args from instance init are honored (0.0.15)
21- - choose output for stream_command (0.0.14)
20+ - fixing bug with defining comments earlier (0.1.16)
21+ - ensure options and args from instance init are honored (0.1.15)
22+ - choose output for stream_command (0.1.14)
2223 - adding support to pull from a url (0.1.13)
2324 - add more verbosity to instance start/stop (0.1.12)
2425 - adding more verbosity to running commands (0.1.11)
Original file line number Diff line number Diff line change @@ -304,6 +304,8 @@ def load_recipe(self):
304304 lines = self .lines [:]
305305 fromHeader = None
306306 stage = None
307+ section = None
308+ comments = []
307309
308310 while lines :
309311
@@ -314,8 +316,6 @@ def load_recipe(self):
314316 # Bootstrap Line
315317 if re .search ("bootstrap" , line , re .IGNORECASE ):
316318 self ._check_bootstrap (stripped )
317- section = None
318- comments = []
319319
320320 # From Line
321321 elif re .search ("from:" , stripped , re .IGNORECASE ):
Original file line number Diff line number Diff line change 55# with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
66
77
8- __version__ = "0.1.15 "
8+ __version__ = "0.1.16 "
99AUTHOR = "Vanessa Sochat"
1010AUTHOR_EMAIL = "[email protected] " 1111NAME = "spython"
You can’t perform that action at this time.
0 commit comments