We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2f7b75f + 297e0de commit b364ea6Copy full SHA for b364ea6
2 files changed
SoftLayer/managers/__init__.py
@@ -7,6 +7,7 @@
7
8
:license: MIT, see LICENSE for more details.
9
"""
10
+from SoftLayer.managers.account import AccountManager
11
from SoftLayer.managers.block import BlockStorageManager
12
from SoftLayer.managers.cdn import CDNManager
13
from SoftLayer.managers.dedicated_host import DedicatedHostManager
@@ -33,6 +34,7 @@
33
34
from SoftLayer.managers.vs_placement import PlacementManager
35
36
__all__ = [
37
+ 'AccountManager',
38
'BlockStorageManager',
39
'CapacityManager',
40
'CDNManager',
SoftLayer/managers/account.py
@@ -8,7 +8,7 @@
import logging
-from SoftLayer import SoftLayerAPIError
+from SoftLayer.exceptions import SoftLayerAPIError
from SoftLayer import utils
14
# Invalid names are ignored due to long method names and short argument names
0 commit comments