Skip to content

Commit

Permalink
bug fix: bad var access
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisTimperley committed Oct 3, 2018
1 parent b4e2f91 commit ee91173
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions houston/sandbox.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,8 @@ def run(self, mission: Mission) -> MissionOutcome:
Executes a given mission and returns a description of the outcome.
"""
assert self.alive
config = self.system.configuration
env = self.environment
config = self.configuration
self.__lock.acquire()
try:
time_before_setup = timer()
Expand All @@ -129,7 +130,6 @@ def run(self, mission: Mission) -> MissionOutcome:
logger.debug("prepared for mission (took %.3f seconds)",
setup_time)

env = mission.environment
outcomes = []

for cmd in mission:
Expand Down

0 comments on commit ee91173

Please sign in to comment.