1
0
mirror of https://github.com/kevin1024/vcrpy.git synced 2025-12-08 16:53:23 +00:00

Remove extra colon in README

Closes #82
This commit is contained in:
Kevin McCarthy
2014-07-07 16:02:29 -10:00
parent c6590f2caf
commit c56de472cd

View File

@@ -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