aboutsummaryrefslogtreecommitdiff
path: root/tests/unix2dos.py
diff options
context:
space:
mode:
authorQuentin Dufour <quentin@deuxfleurs.fr>2023-12-27 18:33:06 +0100
committerQuentin Dufour <quentin@deuxfleurs.fr>2023-12-27 18:33:06 +0100
commitccc9b6abb66ebda0b91b4e21f8ec2fb2e87390f7 (patch)
tree985f9d136a981ec7cc43984c976c60e9295340d5 /tests/unix2dos.py
parent7744625c18aff5990a792bb13a44b60d8c4d4fc5 (diff)
downloadaerogramme-ccc9b6abb66ebda0b91b4e21f8ec2fb2e87390f7.tar.gz
aerogramme-ccc9b6abb66ebda0b91b4e21f8ec2fb2e87390f7.zip
add a --dev mode
Diffstat (limited to 'tests/unix2dos.py')
-rwxr-xr-xtests/unix2dos.py15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/unix2dos.py b/tests/unix2dos.py
deleted file mode 100755
index 4e6c9cf..0000000
--- a/tests/unix2dos.py
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/usr/bin/env python3
-import sys
-
-buf = ""
-with open(sys.argv[1], 'r+b') as f:
- buf = f.read()
-
-if buf.find(b'\r\n'):
- print(f"{sys.argv[1]} is already a CRLF file")
- sys.exit(1)
-
-buf = buf.replace(b'\n', b'\r\n')
-
-with open(sys.argv[1], 'w+b') as f:
- f.write(buf)