summaryrefslogtreecommitdiff
path: root/gnome-software-properties
diff options
context:
space:
mode:
authorMichael Vogt <egon@top>2005-11-29 17:31:21 +0100
committerMichael Vogt <egon@top>2005-11-29 17:31:21 +0100
commita79e4fc80ef854844e560e5b547d1398ab149360 (patch)
treee321ca95a5573529a4261ca1fdbd01b14c4a17af /gnome-software-properties
parent4fce0fdfe15c8ab88d63e3919670e1371eb38fb9 (diff)
downloadpython-apt-a79e4fc80ef854844e560e5b547d1398ab149360.tar.gz
* make the software preferences work again completely
Diffstat (limited to 'gnome-software-properties')
-rw-r--r--gnome-software-properties8
1 files changed, 4 insertions, 4 deletions
diff --git a/gnome-software-properties b/gnome-software-properties
index a1b61ced..2bc04755 100644
--- a/gnome-software-properties
+++ b/gnome-software-properties
@@ -35,9 +35,9 @@ import sys
from optparse import OptionParser
-sys.path.append("@prefix@/share/update-manager/python")
+#sys.path.append("@prefix@/share/update-manager/python")
-from SoftwareProperties import *
+import SoftwareProperties
if __name__ == "__main__":
_ = gettext.gettext
@@ -72,7 +72,7 @@ if __name__ == "__main__":
gtk.glade.bindtextdomain(localesApp, localesDir)
gtk.glade.textdomain(localesApp)
-# data_dir="/usr/share/update-manager/"
+ #data_dir="/usr/share/update-manager/"
data_dir="/tmp/xxx/share/update-manager/"
- app = SoftwareProperties(data_dir,options)
+ app = SoftwareProperties.SoftwareProperties(data_dir,options)
app.run()