summaryrefslogtreecommitdiffstats
path: root/methods.py
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2018-07-28 20:24:34 +0200
committerGitHub <noreply@github.com>2018-07-28 20:24:34 +0200
commit07129deaeb767528e550344e1134f2739c89bdd0 (patch)
tree37210f9fd080a28dff7df83a2f787b9671157325 /methods.py
parent90298ddf01622ec4d8a50deaf7c351a766b9e78a (diff)
parent8fd337e2df27cec7dafa8bda5fcc03dfe6930a51 (diff)
downloadredot-engine-07129deaeb767528e550344e1134f2739c89bdd0.tar.gz
Merge pull request #20544 from dragmz/fix-py37-windows-build
fix windows build using python 3.7
Diffstat (limited to 'methods.py')
-rw-r--r--methods.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/methods.py b/methods.py
index d72cd4afe9..e9450d95e2 100644
--- a/methods.py
+++ b/methods.py
@@ -6,12 +6,12 @@ import glob
import string
import datetime
import subprocess
-from compat import iteritems
+from compat import iteritems, isbasestring
def add_source_files(self, sources, filetype, lib_env=None, shared=False):
- if isinstance(filetype, basestring):
+ if isbasestring(filetype):
dir_path = self.Dir('.').abspath
filetype = glob.glob(dir_path + "/" + filetype)