Removed useless compatibility module from UI

It was originally created to support both PyQt and PySide but
at this point is useless
This commit is contained in:
Salvo 'LtWorf' Tomaselli
2015-06-02 14:56:44 +02:00
parent 36a2c192a8
commit 62c51ab150
4 changed files with 32 additions and 80 deletions

View File

@@ -22,7 +22,6 @@ import locale
from PyQt5 import QtCore, QtGui, QtWidgets
from relational_gui import compatibility
from relational import maintenance
@@ -66,14 +65,13 @@ class surveyForm (QtWidgets.QWidget):
post = {}
post['software'] = "Relational algebra"
post["version"] = version
post["system"] = compatibility.get_py_str(self.ui.txtSystem.text())
post["country"] = compatibility.get_py_str(self.ui.txtCountry.text())
post["school"] = compatibility.get_py_str(self.ui.txtSchool.text())
post["age"] = compatibility.get_py_str(self.ui.txtAge.text())
post["find"] = compatibility.get_py_str(self.ui.txtFind.text())
post["email"] = compatibility.get_py_str(self.ui.txtEmail.text())
post["comments"] = compatibility.get_py_str(
self.ui.txtComments.toPlainText())
post["system"] = self.ui.txtSystem.text()
post["country"] = self.ui.txtCountry.text()
post["school"] = self.ui.txtSchool.text()
post["age"] = self.ui.txtAge.text()
post["find"] = self.ui.txtFind.text()
post["email"] = self.ui.txtEmail.text()
post["comments"] = self.ui.txtComments.toPlainText()
# Clears the form
self.ui.txtSystem.clear()