From: Peter Manser Date: Thu, 4 Aug 2011 19:47:15 +0000 (+0200) Subject: Fixing minor bug in code example - missing apostrophe X-Git-Tag: v0.6.0~90^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=18c42e88f5adc0c547b23905b7c2a60c0ecfe789;p=services%2Fpython-requests.git Fixing minor bug in code example - missing apostrophe --- diff --git a/README.rst b/README.rst index f4b3714..96a1f53 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