1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Module lvol fails when decimal point is a colon

This commit is contained in:
Tomasz Lesniewski 2013-09-24 16:19:07 +02:00
parent e2815a56dc
commit 385ffcdfb1

View file

@ -72,7 +72,7 @@ EXAMPLES = '''
'''
import re
decimal_point = pattern = re.compile(r"(\.|,)")
decimal_point = re.compile(r"(\.|,)")
def parse_lvs(data):
lvs = []