From 3133c2fd9f0e9911ab9f2ceaab8e635905f94c3e Mon Sep 17 00:00:00 2001 From: Martin Kourim Date: Tue, 19 Sep 2017 12:04:22 +0200 Subject: [PATCH] Version bump --- dump2polarion/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dump2polarion/utils.py b/dump2polarion/utils.py index 7843829..9f9be17 100644 --- a/dump2polarion/utils.py +++ b/dump2polarion/utils.py @@ -103,7 +103,7 @@ def fill_response_property(xml, name=None, value=None): raise Dump2PolarionException("Failed to parse XML file: {}".format(err)) name = name or 'dump2polarion' - value = value or ''.join(random.sample(string.ascii_lowercase, 9)) + '10' + value = value or ''.join(random.sample(string.ascii_lowercase, 9)) + '11' if xml_root.tag == 'testsuites': properties = xml_root.find('properties')