Skip to content

Commit 9e4e7c0

Browse files
committed
Fix README and friends one more time now
1 parent b9f0cde commit 9e4e7c0

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -98,12 +98,12 @@ You can install the python client with `pip install taskcluster-urls`;
9898
```python
9999
import taskcluster_urls
100100

101-
taskcluster_urls.api(root_url, 'auth', 'v1', 'foo/bar');
102-
taskcluster_urls.schema(root_url, 'auth', 'v1/foo.yml'); // Note that schema names have versions in them
103-
taskcluster_urls.api_reference(root_url, 'auth', 'v1');
104-
taskcluster_urls.exchange_reference(root_url, 'auth', 'v1');
105-
taskcluster_urls.ui(root_url, 'foo/bar');
106-
taskcluster_urls.docs(root_url, 'foo/bar');
101+
taskcluster_urls.api(root_url, 'auth', 'v1', 'foo/bar')
102+
taskcluster_urls.schema(root_url, 'auth', 'v1/foo.yml') # Note that schema names have versions in them
103+
taskcluster_urls.api_reference(root_url, 'auth', 'v1')
104+
taskcluster_urls.exchange_reference(root_url, 'auth', 'v1')
105+
taskcluster_urls.ui(root_url, 'foo/bar')
106+
taskcluster_urls.docs(root_url, 'foo/bar')
107107
```
108108

109109
Testing

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
name='taskcluster-urls',
1111
description='Standardized url generator for taskcluster resources.',
1212
long_description=open(os.path.join(os.path.dirname(__file__), 'README.md')).read(),
13-
long_description_content_type="text/markdown",
13+
long_description_content_type='text/markdown',
1414
url='https://github.com/taskcluster/taskcluster-lib-urls',
1515
version=version,
1616
packages=['taskcluster_urls'],

0 commit comments

Comments
 (0)