Skip to content

Commit

Permalink
Merge pull request #8 from SimonIT/master
Browse files Browse the repository at this point in the history
better line splitting
  • Loading branch information
doakey3 authored Jan 26, 2019
2 parents 8b79685 + eff9b2e commit 1daf35f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
=====
PyLRC
=====
.. image:: https://img.shields.io/pypi/v/pylrc.svg
.. image:: https://img.shields.io/pypi/dm/pylrc.svg
.. image:: https://img.shields.io/github/license/doakey3/pylrc.svg

A python library for parsing and converting .lrc files

Expand Down
2 changes: 1 addition & 1 deletion pylrc/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@


def parse(lrc):
lines = lrc.split('\n')
lines = lrc.splitlines()
lyrics = Lyrics()
items = []

Expand Down

0 comments on commit 1daf35f

Please sign in to comment.