Skip to content

Commit 1362709

Browse files
committed
Fixes README.md suds cache example
1 parent 1fa2f66 commit 1362709

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,10 +174,10 @@ You can pass an implementation of `suds.cache.Cache` to the `AdWordsClient` or
174174

175175
For example, configuring a different location and duration of the cache file:
176176
```python
177-
file_cache = suds.cache.FileCache(location=cache_path, days=2)
177+
doc_cache = suds.cache.DocumentCache(location=cache_path, days=2)
178178
adwords_client = adwords.AdWordsClient(
179179
developer_token, oauth2_client, user_agent,
180-
client_customer_id=client_customer_id, cache=file_cache)
180+
client_customer_id=client_customer_id, cache=doc_cache)
181181
```
182182

183183
You can also disable caching in similar fashion:

0 commit comments

Comments
 (0)