diff --git a/src/plugins/debugger/gdb/gdbengine.cpp b/src/plugins/debugger/gdb/gdbengine.cpp
index bdacb767080ed9316644b6cfa68a4679cd85ab28..0b007674bc2df685720fad170f4def5f73a2b90f 100644
--- a/src/plugins/debugger/gdb/gdbengine.cpp
+++ b/src/plugins/debugger/gdb/gdbengine.cpp
@@ -1827,14 +1827,7 @@ void GdbEngine::handleShowVersion(const GdbResponse &response)
             postCommand("set detach-on-fork off", ConsoleCommand);
 
         //postCommand("set build-id-verbose 2", ConsoleCommand);
-
-        if (m_gdbVersion > 70100) {
-            // Quick check whether we have python.
-            postCommand("python print 43", ConsoleCommand, CB(handleHasPython));
-        } else {
-            showMessage(_("NOTE: CHECK FOR PYTHON SUPPRESSED, VERSION TOO LOW"));
-            pythonDumpersFailed();
-        }
+        postCommand("python print 43", ConsoleCommand, CB(handleHasPython));
     }
 }