From b64339f48280872deec7bb980a61e494f6f38c92 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Thu, 22 Jan 2009 10:54:34 -0500 Subject: Fix multiple pychecker-spotted typos. These are mostly typos in methods that don't get used in the current Thandy, error in error-handling paths, modules we imported unnecessarily, etc. --- lib/thandy/packagesys/ExePackages.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/thandy/packagesys/ExePackages.py') diff --git a/lib/thandy/packagesys/ExePackages.py b/lib/thandy/packagesys/ExePackages.py index 59be63e..1928ef3 100644 --- a/lib/thandy/packagesys/ExePackages.py +++ b/lib/thandy/packagesys/ExePackages.py @@ -36,8 +36,8 @@ class CommandInstaller(PS.Installer): def __repr__(self): parts = [ "CommandInstaller(%r, %r" %(self._relPath, self._installCommand) ] - if self.removeCommand: - parts.append(", %r"%self.removeCommand) + if self._removeCommand: + parts.append(", %r"%self._removeCommand) parts.append(")") return "".join(parts) -- cgit v1.2.3