Skip to content

Commit

Permalink
revert a change due to an error occurrence in the existing codes(#125)
Browse files Browse the repository at this point in the history
  • Loading branch information
wonkr committed Feb 24, 2023
1 parent 5ff3510 commit 86e4d8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion seedemu/compiler/Docker.py
Original file line number Diff line number Diff line change
Expand Up @@ -745,7 +745,7 @@ def _addFile(self, path: str, content: str) -> str:
"""

staged_path = md5(path.encode('utf-8')).hexdigest()
print(content, end='', file=open(staged_path, 'w'))
print(content, file=open(staged_path, 'w'))
return 'COPY {} {}\n'.format(staged_path, path)

def _importFile(self, path: str, hostpath: str) -> str:
Expand Down

0 comments on commit 86e4d8e

Please sign in to comment.