diff options
Diffstat (limited to 'lib/thandy/packagesys')
-rw-r--r-- | lib/thandy/packagesys/ExePackages.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/thandy/packagesys/ExePackages.py b/lib/thandy/packagesys/ExePackages.py index 1553886..88e7722 100644 --- a/lib/thandy/packagesys/ExePackages.py +++ b/lib/thandy/packagesys/ExePackages.py @@ -22,11 +22,11 @@ class ExePackageSystem(pdb.DBBackedPackageSystem): if len(entry) < 3: continue rp, h, extra = entry[:3] - version = package['version'] + version = pkg['version'] handles.append( ExePackageHandle(self.getDB(), - package['name'], + pkg['name'], version, [], # filelist not implemented in this. rp, @@ -76,4 +76,3 @@ class ExePackageHandle(pdb.DBBackedPackageHandle): commandLine) subprocess.call(commandline) - |