Skip to content

Commit

Permalink
Merge pull request #65 from srz-zumix/feature/update_option_subcommand
Browse files Browse the repository at this point in the history
Feature/update option subcommand
  • Loading branch information
srz-zumix authored May 24, 2021
2 parents c906ec5 + 81c44fd commit e98b435
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,6 @@ pyenv-versions:
pyenv versions | grep -v system | grep -o "3\.7\.[0-9a-z]*" | tail -1 >> .python-version
pyenv versions | grep -v system | grep -o "3\.8\.[0-9a-z]*" | tail -1 >> .python-version
pyenv versions | grep -v system | grep -o "3\.9\.[0-9a-z]*" | tail -1 >> .python-version

clean: ## clean workspace
rm -rf .python-version
2 changes: 1 addition & 1 deletion wandbox/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__author__ = 'srz_zumix'
__version__ = '0.9.34'
__version__ = '0.9.35'

__copyright__ = '2014-2021 %s ' % __author__
__license__ = """
Expand Down
2 changes: 2 additions & 0 deletions wandbox/wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,8 @@ def options(self, language, compiler, retry, retry_wait, verbose=False):
self.printer(self.format_default(s['name'], indent))
else:
self.printer(self.format_indent(s['name'], indent))
else:
self.printer(self.format_indent('nothing', indent))

def get_compiler_list(self, retry, retry_wait):
if self.compiler_list is None:
Expand Down

0 comments on commit e98b435

Please sign in to comment.