From c56de472cd303efd8a3c345b8d8eb03a1b57259e Mon Sep 17 00:00:00 2001 From: Kevin McCarthy Date: Mon, 7 Jul 2014 16:02:29 -1000 Subject: [PATCH] Remove extra colon in README Closes #82 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f69e1c3..f8edead 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ You can also use VCR.py as a decorator. The same request above would look like this: ```python -@vcr.use_cassette('fixtures/vcr_cassettes/synopsis.yaml'): +@vcr.use_cassette('fixtures/vcr_cassettes/synopsis.yaml') def test_iana(): response = urllib2.urlopen('http://www.iana.org/domains/reserved').read() assert 'Example domains' in response