Blame SOURCES/bundled-libs.patch

539926
diff -uNr a/msrest/authentication.py b/msrest/authentication.py
539926
--- a/msrest/authentication.py	2018-07-13 00:15:27.000000000 +0200
539926
+++ b/msrest/authentication.py	2019-05-03 15:24:56.197378655 +0200
539926
@@ -23,6 +23,8 @@
539926
 # IN THE SOFTWARE.
539926
 #
539926
 # --------------------------------------------------------------------------
539926
+import sys
539926
+sys.path.insert(0, '/usr/lib/python-msrest/bundled')
539926
 from typing import Optional, Dict
539926
 
539926
 import requests
539926
@@ -250,4 +252,4 @@
539926
                 self._topic_key_header: topic_key,
539926
             }
539926
         )
539926
-    
539926
\ No newline at end of file
539926
+    
539926
diff -uNr a/msrest/configuration.py b/msrest/configuration.py
539926
--- a/msrest/configuration.py	2018-07-13 00:15:27.000000000 +0200
539926
+++ b/msrest/configuration.py	2019-05-03 15:21:21.714180695 +0200
539926
@@ -33,6 +33,8 @@
539926
     from ConfigParser import NoOptionError  # type: ignore
539926
 import platform
539926
 
539926
+import sys
539926
+sys.path.insert(0, '/usr/lib/python-msrest/bundled')
539926
 from typing import Dict, List, Any, Callable
539926
 
539926
 import requests
539926
diff -uNr a/msrest/exceptions.py b/msrest/exceptions.py
539926
--- a/msrest/exceptions.py	2018-07-13 00:15:27.000000000 +0200
539926
+++ b/msrest/exceptions.py	2019-05-03 15:24:04.788289959 +0200
539926
@@ -27,6 +27,7 @@
539926
 import logging
539926
 import sys
539926
 
539926
+sys.path.insert(0, '/usr/lib/python-msrest/bundled')
539926
 from typing import Callable, Any, Optional, TYPE_CHECKING
539926
 
539926
 if TYPE_CHECKING:
539926
diff -uNr a/msrest/http_logger.py b/msrest/http_logger.py
539926
--- a/msrest/http_logger.py	2018-07-13 00:15:27.000000000 +0200
539926
+++ b/msrest/http_logger.py	2019-05-03 15:25:23.071902273 +0200
539926
@@ -28,6 +28,8 @@
539926
 import re
539926
 import types
539926
 
539926
+import sys
539926
+sys.path.insert(0, '/usr/lib/python-msrest/bundled')
539926
 from typing import Any, Union, Optional, TYPE_CHECKING
539926
 
539926
 if TYPE_CHECKING:
539926
diff -uNr a/msrest/paging.py b/msrest/paging.py
539926
--- a/msrest/paging.py	2018-07-13 00:15:27.000000000 +0200
539926
+++ b/msrest/paging.py	2019-05-03 15:21:59.087518189 +0200
539926
@@ -29,6 +29,8 @@
539926
 except ImportError:
539926
     from collections import Iterator
539926
 
539926
+import sys
539926
+sys.path.insert(0, '/usr/lib/python-msrest/bundled')
539926
 from typing import Dict, Any, List, Callable, Optional, TYPE_CHECKING
539926
 
539926
 if TYPE_CHECKING:
539926
diff -uNr a/msrest/pipeline.py b/msrest/pipeline.py
539926
--- a/msrest/pipeline.py	2018-07-13 00:15:27.000000000 +0200
539926
+++ b/msrest/pipeline.py	2019-05-03 15:23:44.789644462 +0200
539926
@@ -33,6 +33,8 @@
539926
     from urllib.parse import urlparse
539926
 import xml.etree.ElementTree as ET
539926
 
539926
+import sys
539926
+sys.path.insert(0, '/usr/lib/python-msrest/bundled')
539926
 from typing import Dict, Any, Optional, Union, List, TYPE_CHECKING
539926
 
539926
 if TYPE_CHECKING:
539926
diff -uNr a/msrest/polling/poller.py b/msrest/polling/poller.py
539926
--- a/msrest/polling/poller.py	2018-07-13 00:15:27.000000000 +0200
539926
+++ b/msrest/polling/poller.py	2019-05-03 15:22:48.745637924 +0200
539926
@@ -31,6 +31,8 @@
539926
 except ImportError:
539926
     from urllib.parse import urlparse
539926
 
539926
+import sys
539926
+sys.path.insert(0, '/usr/lib/python-msrest/bundled')
539926
 from typing import Any, Callable, Union, List, Optional, TYPE_CHECKING
539926
 
539926
 if TYPE_CHECKING:
539926
diff -uNr a/msrest/serialization.py b/msrest/serialization.py
539926
--- a/msrest/serialization.py	2018-07-13 00:15:27.000000000 +0200
539926
+++ b/msrest/serialization.py	2019-05-03 15:24:30.140840555 +0200
539926
@@ -41,6 +41,7 @@
539926
 
539926
 import isodate
539926
 
539926
+sys.path.insert(0, '/usr/lib/python-msrest/bundled')
539926
 from typing import Dict, Any
539926
 
539926
 from .exceptions import (
539926
diff -uNr a/msrest/service_client.py b/msrest/service_client.py
539926
--- a/msrest/service_client.py	2018-07-13 00:15:27.000000000 +0200
539926
+++ b/msrest/service_client.py	2019-05-03 15:23:16.304149413 +0200
539926
@@ -33,6 +33,8 @@
539926
     from urllib.parse import urljoin, urlparse
539926
 import warnings
539926
 
539926
+import sys
539926
+sys.path.insert(0, '/usr/lib/python-msrest/bundled')
539926
 from typing import Any, Dict, Union, IO, Tuple, Optional, cast, TYPE_CHECKING
539926
 
539926
 if TYPE_CHECKING: