aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2014-01-07 19:12:16 +0100
committerGuido Günther <agx@sigxcpu.org>2014-01-07 19:12:16 +0100
commitb550cd0c8c4d17b997d32c08788d42e4efe2cfbf (patch)
tree1380549639ed17b81dd5704f1aa49313f6bd3c0f
parentc1eef79e20033fc3441d6c9c013cd96f5aebfbc2 (diff)
Minor ident fix
-rwxr-xr-xwhatmaps4
1 files changed, 2 insertions, 2 deletions
diff --git a/whatmaps b/whatmaps
index d775098..3f82f1b 100755
--- a/whatmaps
+++ b/whatmaps
@@ -161,11 +161,11 @@ class Pkg(object):
return "<%s Pkg object name:'%s'>" % (self.type, self.name)
def _get_contents(self):
- """List of files n the package"""
+ """List of files in the package"""
if self._contents:
return self._contents
else:
- cmd = [ string.Template(arg).substitute(arg, pkg_name = self.name)
+ cmd = [ string.Template(arg).substitute(arg, pkg_name=self.name)
for arg in self._list_contents ]
list_contents = subprocess.Popen(cmd,
stdout=subprocess.PIPE,