Browse Source

dont load configuration in test_python_libs as the import fails

master
Steffen Schaumburg 13 years ago
parent
commit
1f355c1638
  1. 5
      test_Python_Libs.py

5
test_Python_Libs.py

@ -24,9 +24,6 @@ Test if gtk is working.
import sys
import os
import Configuration
config_path = Configuration.get_default_config_path()
try:
import gobject as _gobject
@ -70,7 +67,7 @@ try:
(gtk.STOCK_CLOSE, gtk.RESPONSE_OK))
dia.set_default_size(500, 300)
l = gtk.Label("GTK is working!\nConfig location: %s" %config_path)
l = gtk.Label("GTK is working!\n")
dia.vbox.add(l)
l.show()

Loading…
Cancel
Save