diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-04 18:33:16 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-04 18:33:16 -0600 |
commit | 01bd7e2ffdc3caa95228e03ad501d778b05270a9 (patch) | |
tree | 9d6b8caebcd8a7700581d36459c784628d4322a5 /importTest.py | |
parent | 4385133a0d7974f0c0f7d741ee14d80a6aa9f671 (diff) | |
download | pytde-01bd7e2ffdc3caa95228e03ad501d778b05270a9.tar.gz pytde-01bd7e2ffdc3caa95228e03ad501d778b05270a9.zip |
Part 1 of 2 rename pykde to pytde
Diffstat (limited to 'importTest.py')
-rw-r--r-- | importTest.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/importTest.py b/importTest.py index d57571b..1a36338 100644 --- a/importTest.py +++ b/importTest.py @@ -1,20 +1,20 @@ print "\nTesting PyKDE module imports\n" try: - import pykdeconfig + import pytdeconfig except: - print "Can't find pykdeconfig.py - please check installation" + print "Can't find pytdeconfig.py - please check installation" raise -pykdecfg = pykdeconfig.Configuration () +pytdecfg = pytdeconfig.Configuration () #modules = ["dcop", "tdecore", "tdesu", "tdefx", "tdeui", "kio", "kfile", "kparts", "khtml", "kjs", "kspell", "tdeprint"] print "Modules built:" -print " ",pykdecfg.pykde_modules +print " ",pytdecfg.pytde_modules print print "Importing:" print -for mod in pykdecfg.pykde_modules.split(): +for mod in pytdecfg.pytde_modules.split(): print mod if mod != "tdesu": exec ("import " + mod) |