If the GreyLine dependencies are not satisfied, print a warning rather than an error message.

pull/32/head
Christian Jacobs 2015-04-14 21:33:18 +01:00
rodzic edbc9ebdec
commit 2c5b7d9c55
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -34,7 +34,7 @@ try:
have_necessary_modules = True
logging.debug("All dependencies satisfied for the GreyLine class.")
except ImportError:
logging.error("Could not import a non-standard Python module needed by the GreyLine class, or the version of the non-standard module is too old. Check that all the PyQSO dependencies are satisfied.")
logging.warning("Could not import a non-standard Python module needed by the GreyLine class, or the version of the non-standard module is too old. Check that all the PyQSO dependencies are satisfied.")
have_necessary_modules = False
class GreyLine(Gtk.VBox):