Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/netappfiles-preview/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

Release History
===============
1.0.0b4
++++++++
* Remove msrestazure dependency

1.0.0b3
+++++
Add new command `az netappfiles volume list-quota-report`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,10 @@

from knack.util import CLIError
from msrest.exceptions import ValidationError # pylint: disable=import-error
from msrestazure.azure_exceptions import CloudError


def netapp_exception_handler(ex):
if isinstance(ex, (CloudError, ValidationError, ValueError)):
if isinstance(ex, (ValidationError, ValueError)):
message = ex
raise CLIError(message)

Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/netappfiles-preview/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from codecs import open
from setuptools import setup, find_packages

VERSION = "1.0.0b3"
VERSION = "1.0.0b4"

CLASSIFIERS = [
'Development Status :: 4 - Beta',
Expand Down
Loading