mirror of
https://github.com/alvierahman90/otfmacros.git
synced 2025-10-13 07:54:34 +00:00
only tab works as separator
This commit is contained in:
@@ -135,7 +135,7 @@ def get_macros(input):
|
||||
response = []
|
||||
|
||||
# turn input into unvalidated list of macros
|
||||
macros = [re.split('[ \t]', x) for x in input.split('\n')]
|
||||
macros = [re.split('[\t]', x) for x in input.split('\n')]
|
||||
|
||||
# validate macros
|
||||
for index, macro in enumerate(macros):
|
||||
|
Reference in New Issue
Block a user