summaryrefslogtreecommitdiff
path: root/git_review/cmd.py
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2021-03-02 17:53:06 +0000
committerGerrit Code Review <review@openstack.org>2021-03-02 17:53:06 +0000
commitc5a83977e56994f5411a64842b99bb1b4f9c4fe3 (patch)
tree127675851928f243206062c9485aeb447bd99067 /git_review/cmd.py
parent560d0a98e02c405b6671b760a71053bf30e3d6b9 (diff)
parent319953d5aba3fed42a72bcef8070d45e17702ced (diff)
downloadgit-review-c5a83977e56994f5411a64842b99bb1b4f9c4fe3.tar.gz
Merge "Overhaul Python package metadata and OpenDev URLs"2.0.0.0rc1
Diffstat (limited to 'git_review/cmd.py')
-rw-r--r--git_review/cmd.py18
1 files changed, 9 insertions, 9 deletions
diff --git a/git_review/cmd.py b/git_review/cmd.py
index 202c3b6..b3e7e38 100644
--- a/git_review/cmd.py
+++ b/git_review/cmd.py
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
-# Copyright (C) 2011-2020 OpenStack LLC.
+# Copyright OpenStack Foundation and OpenDev Contributors
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
@@ -45,7 +45,7 @@ DEFAULTS = dict(scheme='ssh', hostname=False, port=None, project=False,
branch='master', remote="gerrit", rebase="1",
track="0", usepushurl="0", notopic=False, branchauthor="name")
COPYRIGHT = """\
-Copyright (C) 2011-2020 OpenStack LLC.
+Copyright OpenStack Foundation and OpenDev Contributors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
@@ -1389,21 +1389,21 @@ class _DownloadFlag(argparse.Action):
def __call__(self, parser, namespace, value, option_string=None):
url = urlparse(value)
# Turn URLs into change ids:
- # https://review.openstack.org/423436
+ # https://review.opendev.org/423436
# and
- # https://review.openstack.org/423436/
+ # https://review.opendev.org/423436/
# and
- # https://review.openstack.org/#/c/423436
+ # https://review.opendev.org/#/c/423436
# and
- # https://review.openstack.org/c/<project>/+/423436
+ # https://review.opendev.org/c/<project>/+/423436
# become
# "423436"
# while
- # https://review.openstack.org/423436/1
+ # https://review.opendev.org/423436/1
# and
- # https://review.openstack.org/#/c/423436/1
+ # https://review.opendev.org/#/c/423436/1
# and
- # https://review.openstack.org/c/<project>/+/423436/1
+ # https://review.opendev.org/c/<project>/+/423436/1
# become
# "423436,1".
#