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:
parent
e2815a56dc
commit
385ffcdfb1
1 changed files with 1 additions and 1 deletions
|
@ -72,7 +72,7 @@ EXAMPLES = '''
|
|||
'''
|
||||
|
||||
import re
|
||||
decimal_point = pattern = re.compile(r"(\.|,)")
|
||||
decimal_point = re.compile(r"(\.|,)")
|
||||
|
||||
def parse_lvs(data):
|
||||
lvs = []
|
||||
|
|
Loading…
Reference in a new issue