Skip to content

Commit 9f7eb62

Browse files
committed
Update Copyright year to 2024 in script files and documentation
1 parent fd77b1a commit 9f7eb62

File tree

117 files changed

+142
-190
lines changed

Some content is hidden

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

117 files changed

+142
-190
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-2020 Cisco and/or its affiliates.
3+
Copyright (c) 2016-2024 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
@@ -167,7 +167,7 @@ The development team may make additional name changes as the library evolves wit
167167
developer.webex.com.
168168

169169

170-
*Copyright (c) 2016-2020 Cisco and/or its affiliates.*
170+
*Copyright (c) 2016-2024 Cisco and/or its affiliates.*
171171

172172

173173
.. _Release Plan: https://github.com/CiscoDevNet/webexteamssdk/wiki/Release-Plans

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 = "webexteamssdk"
14-
copyright = "Copyright (c) 2016-2020 Cisco and/or its affiliates."
14+
copyright = "Copyright (c) 2016-2024 Cisco and/or its affiliates."
1515
author = "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-2020 Cisco and/or its affiliates.*
69+
*Copyright (c) 2016-2024 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-2020 Cisco and/or its affiliates.*
61+
*Copyright (c) 2016-2024 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-2020 Cisco and/or its affiliates.*
437+
*Copyright (c) 2016-2024 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-2020 Cisco and/or its affiliates.*
154+
*Copyright (c) 2016-2024 Cisco and/or its affiliates.*
155155

156156

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

docs/user/quickstart.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -487,7 +487,7 @@ extend functionality and leverage all of the objects and quality of life feature
487487
>>> output = WebexTeamsAPI.new_method(param)
488488
489489
490-
*Copyright (c) 2016-2020 Cisco and/or its affiliates.*
490+
*Copyright (c) 2016-2024 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: 3 additions & 6 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-2020 Cisco and/or its affiliates.
25+
Copyright (c) 2016-2024 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
@@ -43,7 +43,6 @@
4343
SOFTWARE.
4444
"""
4545

46-
4746
# Use future for Python v2 and v3 compatibility
4847
from __future__ import (
4948
absolute_import,
@@ -57,7 +56,7 @@
5756
__author__ = "Chris Lunsford"
5857
__author_email__ = "[email protected]"
5958
__contributors__ = ["Brad Bester <[email protected]>"]
60-
__copyright__ = "Copyright (c) 2016-2020 Cisco and/or its affiliates."
59+
__copyright__ = "Copyright (c) 2016-2024 Cisco and/or its affiliates."
6160
__license__ = "MIT"
6261

6362

@@ -114,9 +113,7 @@ def webex_teams_webhook_events():
114113
<blockquote>{}</blockquote>
115114
</body>
116115
</html>
117-
""".format(
118-
get_catfact()
119-
)
116+
""".format(get_catfact())
120117
elif request.method == "POST":
121118
"""Respond to inbound webhook JSON HTTP POST from Webex Teams."""
122119

examples/bot-example-webpy.py

Lines changed: 2 additions & 3 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-2020 Cisco and/or its affiliates.
25+
Copyright (c) 2016-2024 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
@@ -43,7 +43,6 @@
4343
SOFTWARE.
4444
"""
4545

46-
4746
# Use future for Python v2 and v3 compatibility
4847
from __future__ import (
4948
absolute_import,
@@ -57,7 +56,7 @@
5756
__author__ = "Brad Bester"
5857
__author_email__ = "[email protected]"
5958
__contributors__ = ["Chris Lunsford <[email protected]>"]
60-
__copyright__ = "Copyright (c) 2016-2020 Cisco and/or its affiliates."
59+
__copyright__ = "Copyright (c) 2016-2024 Cisco and/or its affiliates."
6160
__license__ = "MIT"
6261

6362

0 commit comments

Comments
 (0)