urllib3 fix
authorKenneth Reitz <me@kennethreitz.com>
Tue, 15 Nov 2011 15:01:37 +0000 (10:01 -0500)
committerKenneth Reitz <me@kennethreitz.com>
Tue, 15 Nov 2011 15:01:37 +0000 (10:01 -0500)
requests/packages/urllib3/connectionpool.py

index 4c2c6b5..8b10dc7 100644 (file)
@@ -338,7 +338,7 @@ class HTTPConnectionPool(ConnectionPool, RequestMethods):
 
         except (SocketTimeout, Empty), e:
             # Timed out either by socket or queue
-            raise TimeoutError("Request timed out after %f seconds" %
+            raise TimeoutError("Request timed out after %s seconds" %
                                self.timeout)
 
         except (BaseSSLError), e: