diff options
author | Martin Peck <coder@peertech.org> | 2008-12-01 15:42:44 +0000 |
---|---|---|
committer | Martin Peck <coder@peertech.org> | 2008-12-01 15:42:44 +0000 |
commit | 4c00768eaa63cabcc43149a5bfe50eeebf639de4 (patch) | |
tree | 5f6743d9fc0ea951684d71e131b72f95448a5db1 /lib/thandy | |
parent | cd73c7c6399a52829b4e35280f8e4598e469462f (diff) |
And now omit the cmd_remove entirely so certain pedantic python versions are happy.
git-svn-id: file:///home/or/svnrepo/updater/trunk@17428 55e972cd-5a19-0410-ae62-a4d7a52db4cd
Diffstat (limited to 'lib/thandy')
-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 04d6cd3..0145727 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['cmd_remove']) + relPath, extra['cmd_install']) else: return None |