fix up some imports
authorsalimfadhley <sal@stodge.org>
Sat, 12 Oct 2013 16:34:06 +0000 (17:34 +0100)
committersalimfadhley <sal@stodge.org>
Sat, 12 Oct 2013 16:34:06 +0000 (17:34 +0100)
jenkinsapi/jobs.py
jenkinsapi/utils/requester.py

index 6f15cc53310086788354d70fba02913da8d2ee7f..fbef338ec8edf398714b5032751bf21f16942583 100644 (file)
@@ -1,6 +1,6 @@
 import logging
 from jenkinsapi.job import Job
-from jenkinsapi.exceptions import JenkinsAPIException
+from jenkinsapi.custom_exceptions import JenkinsAPIException
 
 log = logging.getLogger(__name__)
 
index 70af338b783c730b9db2ffd237ed201c74cfe41b..36a071902c77a12e63c66dfac0d4c83843dc7077 100644 (file)
@@ -4,7 +4,7 @@ Module for jenkinsapi requester (which is a wrapper around python-requests)
 
 import requests
 import urlparse
-from jenkinsapi.exceptions import JenkinsAPIException
+from jenkinsapi.custom_exceptions import JenkinsAPIException
 # import logging
 
 # # these two lines enable debugging at httplib level (requests->urllib3->httplib)