Skip to content

Commit

Permalink
Bug fix for previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
xolox committed Apr 7, 2016
1 parent 5223232 commit 3cb5171
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions executor/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
unicode = str

# Semi-standard module versioning.
__version__ = '9.6'
__version__ = '9.6.1'

# Initialize a logger.
logger = logging.getLogger(__name__)
Expand Down Expand Up @@ -731,7 +731,9 @@ def check(self):
@required_property
def command(self):
"""A list of strings with the command to execute."""
return []
# We specifically return None so that __init__() will raise a
# TypeError exception because no command has been specified.
return None

@property
def command_line(self):
Expand Down

0 comments on commit 3cb5171

Please sign in to comment.