Skip to content

Commit b364ea6

Browse files
Merge pull request #1552 from grafuls/master
fix: initialized accountmanger
2 parents 2f7b75f + 297e0de commit b364ea6

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

SoftLayer/managers/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
88
:license: MIT, see LICENSE for more details.
99
"""
10+
from SoftLayer.managers.account import AccountManager
1011
from SoftLayer.managers.block import BlockStorageManager
1112
from SoftLayer.managers.cdn import CDNManager
1213
from SoftLayer.managers.dedicated_host import DedicatedHostManager
@@ -33,6 +34,7 @@
3334
from SoftLayer.managers.vs_placement import PlacementManager
3435

3536
__all__ = [
37+
'AccountManager',
3638
'BlockStorageManager',
3739
'CapacityManager',
3840
'CDNManager',

SoftLayer/managers/account.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
import logging
1010

11-
from SoftLayer import SoftLayerAPIError
11+
from SoftLayer.exceptions import SoftLayerAPIError
1212
from SoftLayer import utils
1313

1414
# Invalid names are ignored due to long method names and short argument names

0 commit comments

Comments
 (0)