[utils] Apply 2.6 xpath craziness
This fixes ARD on 2.6
This commit is contained in:
		| @@ -305,6 +305,9 @@ def xpath_with_ns(path, ns_map): | |||||||
|  |  | ||||||
|  |  | ||||||
| def xpath_text(node, xpath, name=None, fatal=False): | def xpath_text(node, xpath, name=None, fatal=False): | ||||||
|  |     if sys.version_info < (2, 7):  # Crazy 2.6 | ||||||
|  |         xpath = xpath.encode('ascii') | ||||||
|  |  | ||||||
|     n = node.find(xpath) |     n = node.find(xpath) | ||||||
|     if n is None: |     if n is None: | ||||||
|         if fatal: |         if fatal: | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Philipp Hagemeister
					Philipp Hagemeister