File tree Expand file tree Collapse file tree 3 files changed +24
-13
lines changed Expand file tree Collapse file tree 3 files changed +24
-13
lines changed Original file line number Diff line number Diff line change 1
1
#! /usr/bin/python
2
2
# -*- coding: UTF-8 -*-
3
3
4
- # Copyright 2012 ??? , ???
4
+ # Copyright 2012 TestLink-API-Python-client developers
5
5
#
6
6
# Licensed under ???
7
- #
7
+ # see https://github.com/orenault/TestLink-API-Python-client/issues/4
8
8
9
- from .testlink import TestLinkErrors , TestLinkAPIClient , TestLink
9
+
10
+ from .testlinkerrors import TestLinkErrors
11
+ from .testlink import TestLinkAPIClient , TestLink
10
12
from .testlinkhelper import TestLinkHelper
Original file line number Diff line number Diff line change 13
13
import sys
14
14
from datetime import date
15
15
from testlinkhelper import TestLinkHelper
16
-
17
- class TestLinkErrors (Exception ):
18
- """ Basic error handler
19
- Return message pass as argument
20
- """
21
- def __init__ (self , msg ):
22
- self .__msg = msg
23
-
24
- def __str__ (self ):
25
- return self .__msg
16
+ from testlinkerrors import TestLinkErrors
26
17
27
18
class TestLinkAPIClient (object ):
28
19
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/python
2
+ # -*- coding: UTF-8 -*-
3
+
4
+ # Copyright 2012 pade (Paul Dassier), TestLink-API-Python-client developers
5
+ #
6
+ # Licensed under ???
7
+ # see https://github.com/orenault/TestLink-API-Python-client/issues/4
8
+
9
+ class TestLinkErrors (Exception ):
10
+ """ Basic error handler
11
+ Return message pass as argument
12
+ """
13
+ def __init__ (self , msg ):
14
+ self .__msg = msg
15
+
16
+ def __str__ (self ):
17
+ return self .__msg
18
+
You can’t perform that action at this time.
0 commit comments