Skip to content

Commit

Permalink
Merge pull request #97 from kmonkeyjam/python3_debug
Browse files Browse the repository at this point in the history
make debugging compatible for python3
  • Loading branch information
Jorge Bastida authored Oct 1, 2016
2 parents 75bc3ee + 571bbd6 commit 198f8a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gordon/resources/lambdas.py
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@ def _collect_lambda_module_content(self, destination, go_target_arch='amd64', go
)
if self.project.debug and out:
with indent(4):
self.project.puts(out)
self.project.puts(out.decode("utf-8"))

def _collect_folder(self, source, destination):
for basedir, dirs, files in os.walk(source):
Expand Down

0 comments on commit 198f8a3

Please sign in to comment.