From 1f355c1638ba74a3c9db2ee11ecbe72404c020d1 Mon Sep 17 00:00:00 2001 From: Steffen Schaumburg Date: Thu, 10 Mar 2011 17:35:58 +0100 Subject: [PATCH] dont load configuration in test_python_libs as the import fails --- test_Python_Libs.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/test_Python_Libs.py b/test_Python_Libs.py index 71a613e4..31e14b34 100755 --- a/test_Python_Libs.py +++ b/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()