From cb8d5040f20f1d0a3a04100d734722098d041142 Mon Sep 17 00:00:00 2001 From: Zach Lowry Date: Thu, 14 Jul 2005 14:26:39 +0000 Subject: add missing paren (Logical change 1.259) git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@1064 ce84e21b-d406-0410-9b95-82705330c041 --- src/lib/Client/Redhat.py | 2 +- src/lib/Client/Solaris.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/lib/Client/Redhat.py b/src/lib/Client/Redhat.py index 3e620bd0b..ad417aa82 100644 --- a/src/lib/Client/Redhat.py +++ b/src/lib/Client/Redhat.py @@ -84,7 +84,7 @@ class Redhat(Toolset): return True verp = Popen4("rpm --verify -q %s-%s" % (entry.get('name'),entry.get('version')), bufsize=16384) - odata = verp.fromchild.read( + odata = verp.fromchild.read() vstat = verp.poll() while vstat == -1: odata += verp.fromchild.read() diff --git a/src/lib/Client/Solaris.py b/src/lib/Client/Solaris.py index 1be32410b..aa272eac0 100644 --- a/src/lib/Client/Solaris.py +++ b/src/lib/Client/Solaris.py @@ -78,7 +78,7 @@ class Solaris(Toolset): if self.setup['quick']: return True verp = Popen4("/usr/sbin/pkgchk -n %s" % (entry.get('name')), bufsize=16384) - odata = verp.fromchild.read( + odata = verp.fromchild.read() vstat = verp.poll() while vstat == -1: odata += verp.fromchild.read() -- cgit v1.2.3-1-g7c22