diff options
author | Nick Mathewson <nickm@torproject.org> | 2008-11-20 01:54:43 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2008-11-20 01:54:43 +0000 |
commit | f90778cb749728dfa110b203cfbdfab8f29824df (patch) | |
tree | 56fe743bc0d97311fce127c7e90fea4d3240d91a /lib/thandy | |
parent | fd75e5839c466b04886c9b0312fb3866d68bb6ac (diff) |
fix a couple more types in ExePackages.py.
git-svn-id: file:///home/or/svnrepo/updater/trunk@17334 55e972cd-5a19-0410-ae62-a4d7a52db4cd
Diffstat (limited to 'lib/thandy')
-rw-r--r-- | lib/thandy/packagesys/ExePackages.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/thandy/packagesys/ExePackages.py b/lib/thandy/packagesys/ExePackages.py index 096e51f..e5b843b 100644 --- a/lib/thandy/packagesys/ExePackages.py +++ b/lib/thandy/packagesys/ExePackages.py @@ -1,6 +1,7 @@ # Copyright 2008 The Tor Project, Inc. See LICENSE for licensing information. import subprocess +import logging import thandy.util import thandy.packagesys.PackageSystem as ps @@ -74,6 +75,6 @@ class ExePackageHandle(pdb.DBBackedPackageHandle): def _doInstall(self): commandline = [ self._filename ] + self._arguments logging.info("Installing %s. Command line: %s", self._filename, - commandLine) + commandline) subprocess.call(commandline) |