[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] r17427: {updater} Correct reference to cmd_remove extras passed to CommandInst (updater/trunk/lib/thandy/packagesys)
Author: coderman
Date: 2008-12-01 10:30:57 -0500 (Mon, 01 Dec 2008)
New Revision: 17427
Modified:
updater/trunk/lib/thandy/packagesys/PackageSystem.py
Log:
Correct reference to cmd_remove extras passed to CommandInstaller.
Modified: updater/trunk/lib/thandy/packagesys/PackageSystem.py
===================================================================
--- updater/trunk/lib/thandy/packagesys/PackageSystem.py 2008-12-01 12:37:12 UTC (rev 17426)
+++ updater/trunk/lib/thandy/packagesys/PackageSystem.py 2008-12-01 15:30:57 UTC (rev 17427)
@@ -81,7 +81,7 @@
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