Skip to content

Commit

Permalink
master -> main [ch23227] (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
pkopac authored Jul 20, 2020
1 parent e23d044 commit 7bf1079
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ after_script:

branches:
only:
- master
- main
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<p align='center'><code>chartmogul-python</code> provides convenient Python bindings for <a href='https://dev.chartmogul.com'>ChartMogul's API</a>.</p>
<p align='center'>
<a href="https://badge.fury.io/py/chartmogul"><img src="https://badge.fury.io/py/chartmogul.svg" alt="PyPI version" height="18"></a>
<a href='https://travis-ci.org/chartmogul/chartmogul-python'><img src='https://travis-ci.org/chartmogul/chartmogul-python.svg?branch=master' alt='Build Status'/></a>
<a href='https://travis-ci.org/chartmogul/chartmogul-python'><img src='https://travis-ci.org/chartmogul/chartmogul-python.svg?branch=main' alt='Build Status'/></a>
</p>
<hr>

Expand Down Expand Up @@ -63,7 +63,7 @@ This throws error or returns `<Ping{data='pong!'}>`

### Options
You can also pass to the Config initializer:
* `request_timeout=` sets timeout for requests (seconds), default: none (see [requests docs](http://docs.python-requests.org/en/master/user/quickstart/#timeouts) for details)
* `request_timeout=` sets timeout for requests (seconds), default: none (see [requests docs](https://2.python-requests.org/en/master/user/quickstart/#timeouts) for details)

### Rate Limits & Exponential Backoff
The library will keep retrying if the request exceeds the rate limit or if there's any network related error.
Expand Down
10 changes: 5 additions & 5 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@
#
# source_encoding = 'utf-8-sig'

# The master toctree document.
master_doc = 'index'
# The main toctree document.
main_doc = 'index'

# General information about the project.
project = 'ChartMogul'
Expand Down Expand Up @@ -264,7 +264,7 @@
# (source start file, target name, title,
# author, documentclass [howto, manual, or own class]).
latex_documents = [
(master_doc, 'ChartMogul.tex', 'ChartMogul Documentation',
(main_doc, 'ChartMogul.tex', 'ChartMogul Documentation',
'Petr Kopac', 'manual'),
]

Expand Down Expand Up @@ -306,7 +306,7 @@
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
(master_doc, 'chartmogul', 'ChartMogul Documentation',
(main_doc, 'chartmogul', 'ChartMogul Documentation',
[author], 1)
]

Expand All @@ -321,7 +321,7 @@
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
(master_doc, 'ChartMogul', 'ChartMogul Documentation',
(main_doc, 'ChartMogul', 'ChartMogul Documentation',
author, 'ChartMogul', 'One line description of project.',
'Miscellaneous'),
]
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.. ChartMogul documentation master file, created by
.. ChartMogul documentation main file, created by
sphinx-quickstart on Thu Feb 2 09:43:16 2017.
You can adapt this file completely to your liking, but it should at least
contain the root `toctree` directive.
Expand Down

0 comments on commit 7bf1079

Please sign in to comment.