diff options
author | Alex Jia <ajia@redhat.com> | 2012-02-01 15:00:12 +0800 |
---|---|---|
committer | Michal Privoznik <mprivozn@redhat.com> | 2012-02-01 10:26:57 +0100 |
commit | e33b2ce7e015bca0a523c8d86a74730a180a377d (patch) | |
tree | 9f373a92205c65b9817398b4251c31f83e91c792 /libvirt-override-virStream.py | |
parent | fc722a66facfa375ffc458f6e2d0820c18b811e8 (diff) | |
download | libvirt-python-v6-e33b2ce7e015bca0a523c8d86a74730a180a377d.tar.gz libvirt-python-v6-e33b2ce7e015bca0a523c8d86a74730a180a377d.tar.xz libvirt-python-v6-e33b2ce7e015bca0a523c8d86a74730a180a377d.zip |
python: correct a copy-paste error
* python/libvirt-override-virStream.py: fix a copy-paste error in sendAll().
Signed-off-by: Alex Jia <ajia@redhat.com>
Diffstat (limited to 'libvirt-override-virStream.py')
-rw-r--r-- | libvirt-override-virStream.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libvirt-override-virStream.py b/libvirt-override-virStream.py index ff53a16..b5cec2a 100644 --- a/libvirt-override-virStream.py +++ b/libvirt-override-virStream.py @@ -86,7 +86,7 @@ ret = self.send(got) if ret == -2: - raise libvirtError("cannot use recvAll with " + raise libvirtError("cannot use sendAll with " "nonblocking stream") def recv(self, nbytes): |