From: JinWang An Date: Mon, 28 Dec 2020 04:45:34 +0000 (+0900) Subject: Imported Upstream version 3.1.1 X-Git-Tag: upstream/3.1.1^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bf600c596de9813ff2e7faf93392f567d61c379f;p=platform%2Fupstream%2Fpython3-pbr.git Imported Upstream version 3.1.1 --- diff --git a/AUTHORS b/AUTHORS index faa64ef..17edd01 100644 --- a/AUTHORS +++ b/AUTHORS @@ -70,6 +70,7 @@ Masaki Matsushita Matt Riedemann Matthew Montgomery Matthew Treinish +Mehdi Abaakouk Michael Basnight Michael Still Mike Heald diff --git a/ChangeLog b/ChangeLog index c34e8b5..405660f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,11 @@ CHANGES ======= +3.1.1 +----- + +* Restore previous IP binding + 3.1.0 ----- diff --git a/PKG-INFO b/PKG-INFO index 71b69fd..8bde250 100644 --- a/PKG-INFO +++ b/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: pbr -Version: 3.1.0 +Version: 3.1.1 Summary: Python Build Reasonableness Home-page: http://docs.openstack.org/developer/pbr/ Author: OpenStack diff --git a/pbr.egg-info/PKG-INFO b/pbr.egg-info/PKG-INFO index 71b69fd..8bde250 100644 --- a/pbr.egg-info/PKG-INFO +++ b/pbr.egg-info/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: pbr -Version: 3.1.0 +Version: 3.1.1 Summary: Python Build Reasonableness Home-page: http://docs.openstack.org/developer/pbr/ Author: OpenStack diff --git a/pbr/packaging.py b/pbr/packaging.py index 913e7a3..c8eedbd 100644 --- a/pbr/packaging.py +++ b/pbr/packaging.py @@ -293,7 +293,7 @@ if __name__ == "__main__": usage='%%(prog)s [-h] [--port PORT] [--host IP] -- [passed options]') parser.add_argument('--port', '-p', type=int, default=8000, help='TCP port to listen on') - parser.add_argument('--host', '-b', default=my_ip, + parser.add_argument('--host', '-b', default='', help='IP to bind the server to') parser.add_argument('args', nargs=argparse.REMAINDER,