From 18c42e88f5adc0c547b23905b7c2a60c0ecfe789 Mon Sep 17 00:00:00 2001 From: Peter Manser Date: Thu, 4 Aug 2011 21:47:15 +0200 Subject: [PATCH] Fixing minor bug in code example - missing apostrophe --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index f4b37146..96a1f537 100644 --- a/README.rst +++ b/README.rst @@ -43,7 +43,7 @@ HTTPS? Basic Authentication? :: Uh oh, we're not authorized! Let's add authentication. :: - >>> r = requests.get(https://httpbin.ep.io/basic-auth/user/pass', auth=('user', 'pass')) + >>> r = requests.get('https://httpbin.ep.io/basic-auth/user/pass', auth=('user', 'pass')) >>> r.status_code 200