diff options
author | Zach Lowry <zach@mcs.anl.gov> | 2005-07-14 14:26:39 +0000 |
---|---|---|
committer | Zach Lowry <zach@mcs.anl.gov> | 2005-07-14 14:26:39 +0000 |
commit | cb8d5040f20f1d0a3a04100d734722098d041142 (patch) | |
tree | 730892d93862c4c297d5956226fcf98428056a8f /src/lib/Client/Redhat.py | |
parent | b9f48fda3f62d1cbb183cfe735981bfdb3e17825 (diff) | |
download | bcfg2-cb8d5040f20f1d0a3a04100d734722098d041142.tar.gz bcfg2-cb8d5040f20f1d0a3a04100d734722098d041142.tar.bz2 bcfg2-cb8d5040f20f1d0a3a04100d734722098d041142.zip |
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
Diffstat (limited to 'src/lib/Client/Redhat.py')
-rw-r--r-- | src/lib/Client/Redhat.py | 2 |
1 files changed, 1 insertions, 1 deletions
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() |