diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2023-02-12 10:03:37 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2023-02-12 10:03:37 +0000 |
commit | 24e839c04c39d1f4423b267c371e8e5b5bc33867 (patch) | |
tree | 2395ec71424fe1ff783e0dc7ca0f9b4e16def8a9 /pdoc/cli.py | |
parent | Adding upstream version 10.6.3. (diff) | |
download | sqlglot-upstream/11.0.1.tar.xz sqlglot-upstream/11.0.1.zip |
Adding upstream version 11.0.1.upstream/11.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'pdoc/cli.py')
-rwxr-xr-x | pdoc/cli.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pdoc/cli.py b/pdoc/cli.py index 72a986d..1db895e 100755 --- a/pdoc/cli.py +++ b/pdoc/cli.py @@ -26,9 +26,9 @@ if __name__ == "__main__": opts = parser.parse_args() opts.docformat = "google" opts.modules = ["sqlglot"] - opts.footer_text = "Copyright (c) 2022 Toby Mao" + opts.footer_text = "Copyright (c) 2023 Toby Mao" opts.template_directory = Path(__file__).parent.joinpath("templates").absolute() - opts.edit_url = ["sqlglot=https://github.com/tobymao/sqlglot/"] + opts.edit_url = ["sqlglot=https://github.com/tobymao/sqlglot/tree/main/sqlglot/"] with mock.patch("pdoc.__main__.parser", **{"parse_args.return_value": opts}): cli() |