summaryrefslogtreecommitdiff
path: root/lib/thandy/packagesys
diff options
context:
space:
mode:
authorMartin Peck <coder@peertech.org>2008-12-01 15:30:57 +0000
committerMartin Peck <coder@peertech.org>2008-12-01 15:30:57 +0000
commitcd73c7c6399a52829b4e35280f8e4598e469462f (patch)
tree08cea20b10164778e4a630f08274fff3ba64b735 /lib/thandy/packagesys
parent4ef158300ab755ba9f89bae2aaf2d3aecb68a717 (diff)
Correct reference to cmd_remove extras passed to CommandInstaller.
git-svn-id: file:///home/or/svnrepo/updater/trunk@17427 55e972cd-5a19-0410-ae62-a4d7a52db4cd
Diffstat (limited to 'lib/thandy/packagesys')
-rw-r--r--lib/thandy/packagesys/PackageSystem.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/thandy/packagesys/PackageSystem.py b/lib/thandy/packagesys/PackageSystem.py
index 4a847e9..04d6cd3 100644
--- a/lib/thandy/packagesys/PackageSystem.py
+++ b/lib/thandy/packagesys/PackageSystem.py
@@ -81,7 +81,7 @@ def getInstaller(installType, relPath, extra, defaultFormat, package):
elif installType == 'command':
import thandy.packagesys.ExePackages
installer = thandy.packagesys.ExePackages.CommandInstaller(
- relPath, extra['cmd_install'], extra.get['cmd_remove'])
+ relPath, extra['cmd_install'], extra['cmd_remove'])
else:
return None