diff --git a/VERSION b/VERSION index 800e169b..56762f5e 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.0.1-develop26 +2.0.1-develop27 diff --git a/modules/request.py b/modules/request.py index 6d2ad095..22f7c65c 100644 --- a/modules/request.py +++ b/modules/request.py @@ -96,8 +96,8 @@ class Requests: def file_yaml(self, path_to_file, check_empty=False, create=False, start_empty=False): return YAML(path=path_to_file, check_empty=check_empty, create=create, start_empty=start_empty) - def get_yaml(self, url, check_empty=False): - response = self.get(url) + def get_yaml(self, url, headers=None, check_empty=False): + response = self.get(url, headers=headers) if response.status_code >= 400: raise Failed(f"URL Error: No file found at {url}") return YAML(input_data=response.content, check_empty=check_empty)