diff options
author | Martin Peck <coder@peertech.org> | 2008-12-01 15:30:57 +0000 |
---|---|---|
committer | Martin Peck <coder@peertech.org> | 2008-12-01 15:30:57 +0000 |
commit | cd73c7c6399a52829b4e35280f8e4598e469462f (patch) | |
tree | 08cea20b10164778e4a630f08274fff3ba64b735 /lib | |
parent | 4ef158300ab755ba9f89bae2aaf2d3aecb68a717 (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')
-rw-r--r-- | lib/thandy/packagesys/PackageSystem.py | 2 |
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 |