From 97fa8339e9e14d413d5be85089794aff17426865 Mon Sep 17 00:00:00 2001 From: Justine Pelletreau Date: Wed, 2 Mar 2022 16:29:20 +0100 Subject: [PATCH] Now, it werkz, har har --- spaceify.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spaceify.py b/spaceify.py index 543005c..58b3857 100755 --- a/spaceify.py +++ b/spaceify.py @@ -26,7 +26,7 @@ def spaceify(filepath): with open(filepath, "r") as myfile: myfile = myfile.read() - myfile.replace("\t", " ") + myfile = myfile.replace("\t", " ") with open(filepath, "w") as yourfile: yourfile.write(myfile)