diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2017-10-21 19:31:23 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2017-10-21 20:41:07 +0200 |
commit | 6361e24f29ae735b75bcd27f9fe521397ce7c10c (patch) | |
tree | 74eefddaf3213579181f2945b59427f15b33e3ae /platform/windows | |
parent | 393daf05025bd8076ec01eb754d1145dbb12edc5 (diff) |
Cleanup unnecessary debug prints
Diffstat (limited to 'platform/windows')
-rw-r--r-- | platform/windows/detect.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/platform/windows/detect.py b/platform/windows/detect.py index 031b397988..cd4230acd4 100644 --- a/platform/windows/detect.py +++ b/platform/windows/detect.py @@ -44,7 +44,6 @@ def can_build(): if (os.system(mingw64 + test) == 0 or os.system(mingw32 + test) == 0): return True - print("Could not detect MinGW. Ensure its binaries are in your PATH or that MINGW32_PREFIX or MINGW64_PREFIX are properly defined.") return False |