Skip to content

Commit e98b435

Browse files
authored
Merge pull request #65 from srz-zumix/feature/update_option_subcommand
Feature/update option subcommand
2 parents c906ec5 + 81c44fd commit e98b435

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

Makefile

+3
Original file line numberDiff line numberDiff line change
@@ -40,3 +40,6 @@ pyenv-versions:
4040
pyenv versions | grep -v system | grep -o "3\.7\.[0-9a-z]*" | tail -1 >> .python-version
4141
pyenv versions | grep -v system | grep -o "3\.8\.[0-9a-z]*" | tail -1 >> .python-version
4242
pyenv versions | grep -v system | grep -o "3\.9\.[0-9a-z]*" | tail -1 >> .python-version
43+
44+
clean: ## clean workspace
45+
rm -rf .python-version

wandbox/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
__author__ = 'srz_zumix'
2-
__version__ = '0.9.34'
2+
__version__ = '0.9.35'
33

44
__copyright__ = '2014-2021 %s ' % __author__
55
__license__ = """

wandbox/wrapper.py

+2
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,8 @@ def options(self, language, compiler, retry, retry_wait, verbose=False):
8080
self.printer(self.format_default(s['name'], indent))
8181
else:
8282
self.printer(self.format_indent(s['name'], indent))
83+
else:
84+
self.printer(self.format_indent('nothing', indent))
8385

8486
def get_compiler_list(self, retry, retry_wait):
8587
if self.compiler_list is None:

0 commit comments

Comments
 (0)