summaryrefslogtreecommitdiff
path: root/lib/thandy/packagesys/PackageSystem.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/thandy/packagesys/PackageSystem.py')
-rwxr-xr-xlib/thandy/packagesys/PackageSystem.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/thandy/packagesys/PackageSystem.py b/lib/thandy/packagesys/PackageSystem.py
index d1060d0..9fb878f 100755
--- a/lib/thandy/packagesys/PackageSystem.py
+++ b/lib/thandy/packagesys/PackageSystem.py
@@ -18,8 +18,11 @@ def getItemsFromPackage(pkg):
extra = {}
checker = getChecker(relPath, extra, defaultFormat=format,
package=pkg)
- installer = getInstaller(relPath, extra,
- defaultFormat=format, package=pkg)
+ # we don't need this
+ # installer = getInstaller(relPath, extra,
+ # defaultFormat=format, package=pkg)
+ installer = None
+
result[relPath] = PackageItem(relPath, checker, installer)
return result
@@ -70,7 +73,6 @@ def getChecker(relPath, extra, defaultFormat, package):
k,v=extra['registry_ent']
return thandy.packagesys.ExePackages.RegistryChecker(k,v)
elif checkType == 'thp':
- print "Getting thp checker"
import thandy.packagesys.ThpPackages
return thandy.packagesys.ThpPackages.ThpChecker(
extra['thp_name'], extra['thp_version'])
@@ -109,7 +111,6 @@ def getInstaller(relPath, extra, defaultFormat, package):
installer = thandy.packagesys.ExePackages.CommandInstaller(
relPath, extra['cmd_install'], extra.get('cmd_remove'))
elif installType == 'thp':
- print "Getting thp installer"
import thandy.packagesys.ThpPackages
installer = thandy.packagesys.ThpPackages.ThpInstaller(
relPath)