diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2023-01-18 20:20:23 -0500 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2023-01-18 20:20:23 -0500 |
commit | 2fa5db2b5b6c081ca1a767b30e3c92da142a34e0 (patch) | |
tree | a88125f65856a9d22a69394e1dee23f726e49b66 /sites/shared_conf.py | |
parent | 8603aeab2aa14dad74579c7b0c7c421bb33b446c (diff) |
Streamline copyright string
Diffstat (limited to 'sites/shared_conf.py')
-rw-r--r-- | sites/shared_conf.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sites/shared_conf.py b/sites/shared_conf.py index 39488f7e..5e85def0 100644 --- a/sites/shared_conf.py +++ b/sites/shared_conf.py @@ -25,8 +25,7 @@ intersphinx_mapping = {"python": ("https://docs.python.org/3.6/", None)} # Regular settings project = "Paramiko" -year = datetime.now().year -copyright = "{} Jeff Forcier".format(year) +copyright = f"{datetime.now().year} Jeff Forcier" master_doc = "index" templates_path = ["_templates"] exclude_trees = ["_build"] |