diff options
author | Juan J. Martinez <jjm@usebox.net> | 2021-02-09 20:29:39 +0000 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2021-02-09 20:29:59 +0000 |
commit | c1df3479dfbe0e3e4da9a210381a5f8331eb5e48 (patch) | |
tree | cc730e5e2bd0c337cf6513a28fbcc9362bab2573 /tools | |
parent | 6dce96890ef234c236d5bdb4be3245413f255d75 (diff) | |
download | ubox-msx-lib-c1df3479dfbe0e3e4da9a210381a5f8331eb5e48.tar.gz ubox-msx-lib-c1df3479dfbe0e3e4da9a210381a5f8331eb5e48.zip |
Windows compatibilty
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/mkdeps.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/mkdeps.py b/tools/mkdeps.py index 05bac9b..89df9d8 100755 --- a/tools/mkdeps.py +++ b/tools/mkdeps.py @@ -47,7 +47,7 @@ def main(): if out.returncode: sys.exit("Error: %s" % out.stderr) - out = out.stdout.decode('utf-8').strip() + out = out.stdout.decode('utf-8').strip("\n\r") result.append(re.sub(FIX_RE, fix_path, out)) try: |