File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 2
2
import logging
3
3
4
4
from requests .exceptions import HTTPError
5
+
5
6
from .rest_client import AtlassianRestAPI
6
7
7
8
log = logging .getLogger (__name__ )
Original file line number Diff line number Diff line change 3
3
import copy
4
4
import re
5
5
import sys
6
-
7
6
from datetime import datetime
8
7
from pprint import PrettyPrinter
8
+
9
9
from ..rest_client import AtlassianRestAPI
10
10
11
11
RE_TIMEZONE = re .compile (r"(\d{2}):(\d{2})$" )
Original file line number Diff line number Diff line change 13
13
from requests import HTTPError
14
14
15
15
from atlassian import utils
16
-
17
- from .errors import (
16
+ from atlassian .errors import (
18
17
ApiConflictError ,
19
18
ApiError ,
20
19
ApiNotAcceptable ,
21
20
ApiNotFoundError ,
22
21
ApiPermissionError ,
23
22
ApiValueError ,
24
23
)
25
- from .rest_client import AtlassianRestAPI
24
+ from atlassian .rest_client import AtlassianRestAPI
26
25
27
26
log = logging .getLogger (__name__ )
28
27
You can’t perform that action at this time.
0 commit comments