From d03da58feda65bff4b8e05108aedc0e2350de670 Mon Sep 17 00:00:00 2001 From: Ritiek Malhotra Date: Thu, 29 Jun 2017 13:04:19 +0530 Subject: [PATCH] Fix windows specific encoding errors --- core/misc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/misc.py b/core/misc.py index a3b185c..ecbbc93 100755 --- a/core/misc.py +++ b/core/misc.py @@ -135,7 +135,7 @@ def filter_path(path): os.makedirs(path) for temp in os.listdir(path): if temp.endswith('.temp'): - os.remove(u'{0}/{1}'.format(path, temp)) + os.remove('{0}/{1}'.format(path, temp)) def grace_quit():