Skip to content

Commit

Permalink
Merge pull request #7 from colons/colons
Browse files Browse the repository at this point in the history
Be okay with colons in style declarations.
  • Loading branch information
LegoStormtroopr committed Jul 20, 2017
2 parents 8e3477c + 382ac71 commit 4905d30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wcag_zoo/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ def get_applicable_styles(node):

styles.append(dict([
tuple(
s.strip().split(':')
s.strip().split(':', 1)
)
for s in style.split(';')
])
Expand Down

0 comments on commit 4905d30

Please sign in to comment.