diff options
author | Patrick Uiterwijk <puiterwijk@redhat.com> | 2014-01-29 01:11:17 +0000 |
---|---|---|
committer | Patrick Uiterwijk <puiterwijk@redhat.com> | 2014-01-29 01:11:17 +0000 |
commit | f1aa4ab7c120fede05030919aaf240018636c3a5 (patch) | |
tree | 586ec99c2e4480b2c42fafec2aa426dc40a7cfa8 /files/hotfix/python-openid/fetchers.py | |
parent | 3dad76a61e8dd7ad09f3582ffbd88e39ce05b27c (diff) | |
download | ansible-f1aa4ab7c120fede05030919aaf240018636c3a5.tar.gz ansible-f1aa4ab7c120fede05030919aaf240018636c3a5.tar.xz ansible-f1aa4ab7c120fede05030919aaf240018636c3a5.zip |
Hotfix python-openid
Diffstat (limited to 'files/hotfix/python-openid/fetchers.py')
-rw-r--r-- | files/hotfix/python-openid/fetchers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/hotfix/python-openid/fetchers.py b/files/hotfix/python-openid/fetchers.py index 944e2157a..d628a2ac5 100644 --- a/files/hotfix/python-openid/fetchers.py +++ b/files/hotfix/python-openid/fetchers.py @@ -250,7 +250,7 @@ class CurlHTTPFetcher(HTTPFetcher): # Remove the status line from the beginning of the input unused_http_status_line = header_file.readline().lower () - if unused_http_status_line.startswith('http/1.1 100 '): + while unused_http_status_line.startswith('http/1.1 100 '): unused_http_status_line = header_file.readline() unused_http_status_line = header_file.readline() |