Skip to content

Commit

Permalink
Fix README and friends one more time now
Browse files Browse the repository at this point in the history
  • Loading branch information
imbstack committed May 24, 2018
1 parent b9f0cde commit 9e4e7c0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,12 +98,12 @@ You can install the python client with `pip install taskcluster-urls`;
```python
import taskcluster_urls

taskcluster_urls.api(root_url, 'auth', 'v1', 'foo/bar');
taskcluster_urls.schema(root_url, 'auth', 'v1/foo.yml'); // Note that schema names have versions in them
taskcluster_urls.api_reference(root_url, 'auth', 'v1');
taskcluster_urls.exchange_reference(root_url, 'auth', 'v1');
taskcluster_urls.ui(root_url, 'foo/bar');
taskcluster_urls.docs(root_url, 'foo/bar');
taskcluster_urls.api(root_url, 'auth', 'v1', 'foo/bar')
taskcluster_urls.schema(root_url, 'auth', 'v1/foo.yml') # Note that schema names have versions in them
taskcluster_urls.api_reference(root_url, 'auth', 'v1')
taskcluster_urls.exchange_reference(root_url, 'auth', 'v1')
taskcluster_urls.ui(root_url, 'foo/bar')
taskcluster_urls.docs(root_url, 'foo/bar')
```

Testing
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
name='taskcluster-urls',
description='Standardized url generator for taskcluster resources.',
long_description=open(os.path.join(os.path.dirname(__file__), 'README.md')).read(),
long_description_content_type="text/markdown",
long_description_content_type='text/markdown',
url='https://github.com/taskcluster/taskcluster-lib-urls',
version=version,
packages=['taskcluster_urls'],
Expand Down

0 comments on commit 9e4e7c0

Please sign in to comment.