Skip to content

Commit cc2fa60

Browse files
committed
Update Copyright notice
1 parent 3aca1fe commit cc2fa60

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

100 files changed

+111
-117
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2016-2019 Cisco and/or its affiliates.
3+
Copyright (c) 2016-2020 Cisco and/or its affiliates.
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ Contribution
156156
webexteamssdk_ is a community development projects. Feedback, thoughts, ideas, and code contributions are welcome! Please see the `Contributing`_ guide for more information.
157157

158158

159-
*Copyright (c) 2016-2019 Cisco and/or its affiliates.*
159+
*Copyright (c) 2016-2020 Cisco and/or its affiliates.*
160160

161161

162162
.. _ciscosparkapi: https://github.com/CiscoDevNet/ciscosparkapi/tree/ciscosparkapi

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212

1313
project = u'webexteamssdk'
14-
copyright = u'Copyright (c) 2016-2019 Cisco and/or its affiliates.'
14+
copyright = u'Copyright (c) 2016-2020 Cisco and/or its affiliates.'
1515
author = u'Chris Lunsford'
1616
version = get_versions()['version']
1717
release = get_versions()['version']

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ Webex Teams for Developers
6666
Leveraging the Webex Teams APIs and developing on top of the Webex Teams cloud is easy. Signup for a `free account`_ and then head over to the `Webex Teams for Developers`_ website to learn more.
6767

6868

69-
*Copyright (c) 2016-2019 Cisco and/or its affiliates.*
69+
*Copyright (c) 2016-2020 Cisco and/or its affiliates.*
7070

7171

7272
.. _free account: `Webex Teams`

docs/installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ command:
5858
$ python setup.py install
5959
6060
61-
*Copyright (c) 2016-2019 Cisco and/or its affiliates.*
61+
*Copyright (c) 2016-2020 Cisco and/or its affiliates.*
6262

6363

6464
.. _Python Package Index (PyPI): https://pypi.python.org/pypi/webexteamssdk

docs/user/api.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -434,4 +434,4 @@ Actions
434434

435435
.. autoclass:: webexteamssdk.cards.actions.ShowCard
436436

437-
*Copyright (c) 2016-2019 Cisco and/or its affiliates.*
437+
*Copyright (c) 2016-2020 Cisco and/or its affiliates.*

docs/user/intro.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ webexteamssdk License
151151
.. include:: ../../LICENSE
152152

153153

154-
*Copyright (c) 2016-2019 Cisco and/or its affiliates.*
154+
*Copyright (c) 2016-2020 Cisco and/or its affiliates.*
155155

156156

157157
.. _MIT Open Source License: https://opensource.org/licenses/MIT

docs/user/quickstart.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -473,21 +473,21 @@ Extending the API with bound methods
473473
------------------------------------
474474

475475
As the Webex Teams API is developed and features are added, it may be necessary to extend the webexteamssdk to access those features.
476-
Extending the API is simple by binding your own methods to the WebexTeamsAPI connection object. By binding a method, you can
476+
Extending the API is simple by binding your own methods to the WebexTeamsAPI connection object. By binding a method, you can
477477
extend functionality and leverage all of the objects and quality of life features of webexteamssdk.
478478

479479
.. code-block:: python
480480
481481
>>> new_method(self, param):
482482
... json_obj = self._session.get('/example/action/' + param)
483483
... return json_obj
484-
484+
485485
>>> api = WebexTeamsAPI()
486486
>>> api.new_method = new_method
487487
>>> output = WebexTeamsAPI.new_method(param)
488488
489489
490-
*Copyright (c) 2016-2019 Cisco and/or its affiliates.*
490+
*Copyright (c) 2016-2020 Cisco and/or its affiliates.*
491491

492492

493493
.. _Webex Teams: https://www.webex.com/products/teams/index.html

examples/bot-example-flask.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
2323
This script supports Python versions 2 and 3.
2424
25-
Copyright (c) 2016-2019 Cisco and/or its affiliates.
25+
Copyright (c) 2016-2020 Cisco and/or its affiliates.
2626
2727
Permission is hereby granted, free of charge, to any person obtaining a copy
2828
of this software and associated documentation files (the "Software"), to deal
@@ -57,7 +57,7 @@
5757
__author__ = "Chris Lunsford"
5858
__author_email__ = "[email protected]"
5959
__contributors__ = ["Brad Bester <[email protected]>"]
60-
__copyright__ = "Copyright (c) 2016-2019 Cisco and/or its affiliates."
60+
__copyright__ = "Copyright (c) 2016-2020 Cisco and/or its affiliates."
6161
__license__ = "MIT"
6262

6363

examples/bot-example-webpy.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
the time of this writing web.py (v0.38) only supports Python 2.
2323
Therefore this script only supports Python 2.
2424
25-
Copyright (c) 2016-2019 Cisco and/or its affiliates.
25+
Copyright (c) 2016-2020 Cisco and/or its affiliates.
2626
2727
Permission is hereby granted, free of charge, to any person obtaining a copy
2828
of this software and associated documentation files (the "Software"), to deal
@@ -57,7 +57,7 @@
5757
__author__ = "Brad Bester"
5858
__author_email__ = "[email protected]"
5959
__contributors__ = ["Chris Lunsford <[email protected]>"]
60-
__copyright__ = "Copyright (c) 2016-2019 Cisco and/or its affiliates."
60+
__copyright__ = "Copyright (c) 2016-2020 Cisco and/or its affiliates."
6161
__license__ = "MIT"
6262

6363

0 commit comments

Comments
 (0)