diff options
| author | Jenkins <jenkins@review.openstack.org> | 2016-12-15 03:32:55 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2016-12-15 03:32:55 +0000 |
| commit | d854ff052d4825dd30ba0827dbd2edf5ebbb8c3f (patch) | |
| tree | c329cdf51b53b44c39af9a6912d05b06925086d4 | |
| parent | 33cafd9b76a39475bdb04f892a6d8f39dd99e25d (diff) | |
| parent | 74360e00f51bd6be275ae5e7e5fc0e1ee765b54f (diff) | |
| download | python-openstackclient-d854ff052d4825dd30ba0827dbd2edf5ebbb8c3f.tar.gz | |
Merge "[TrivialFix] Fix typo error"
| -rw-r--r-- | openstackclient/network/v2/port.py | 2 | ||||
| -rw-r--r-- | openstackclient/tests/unit/test_shell.py | 2 | ||||
| -rw-r--r-- | releasenotes/notes/backup_list_all-projects_option-4bb23e0b9b075cac.yaml | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/openstackclient/network/v2/port.py b/openstackclient/network/v2/port.py index bce3e2d3..b660e698 100644 --- a/openstackclient/network/v2/port.py +++ b/openstackclient/network/v2/port.py @@ -666,7 +666,7 @@ class UnsetPort(command.Command): def take_action(self, parsed_args): client = self.app.client_manager.network obj = client.find_port(parsed_args.port, ignore_missing=False) - # SDK ignores update() if it recieves a modified obj and attrs + # SDK ignores update() if it receives a modified obj and attrs # To handle the same tmp_obj is created in all take_action of # Unset* classes tmp_fixed_ips = copy.deepcopy(obj.fixed_ips) diff --git a/openstackclient/tests/unit/test_shell.py b/openstackclient/tests/unit/test_shell.py index 3d91da9b..b9fac684 100644 --- a/openstackclient/tests/unit/test_shell.py +++ b/openstackclient/tests/unit/test_shell.py @@ -422,7 +422,7 @@ class TestShellArgV(TestShell): Use the argv supplied by the test runner so we get actual Python runtime behaviour; we only need to check the type of argv[0] - which will alwyas be present. + which will always be present. """ with mock.patch( diff --git a/releasenotes/notes/backup_list_all-projects_option-4bb23e0b9b075cac.yaml b/releasenotes/notes/backup_list_all-projects_option-4bb23e0b9b075cac.yaml index 5a7defaf..cbc7593a 100644 --- a/releasenotes/notes/backup_list_all-projects_option-4bb23e0b9b075cac.yaml +++ b/releasenotes/notes/backup_list_all-projects_option-4bb23e0b9b075cac.yaml @@ -1,4 +1,4 @@ --- features: - Add ``--all-projects`` option to the ``volume backup list`` command - to list volume backups accross all projects. + to list volume backups across all projects. |
