Skip to content

Commit

Permalink
simplier fix for issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jedwards4b committed Sep 17, 2020
1 parent dc67cc6 commit 36c56db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion manic/sourcetree.py
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ def checkout(self, verbosity, load_all, load_comp=None):
else:
tmp_comps = self._required_compnames

load_comps = self.order_comps_by_local_path(self, tmp_comps)
load_comps = self.order_comps_by_local_path(tmp_comps)

# checkout the primary externals
for comp in load_comps:
Expand Down
2 changes: 1 addition & 1 deletion manic/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ def execute_subprocess(commands, status_to_caller=False,
hanging_timer.start()
try:
output = subprocess.check_output(commands, stderr=subprocess.STDOUT,
universal_newlines=True)
universal_newlines=True).decode('utf-8')
log_process_output(output)
status = 0
except OSError as error:
Expand Down

0 comments on commit 36c56db

Please sign in to comment.