Skip to content

Commit

Permalink
Version 1.6.3.6
Browse files Browse the repository at this point in the history
[-] chore : doc fixup
  • Loading branch information
mos9527 committed Jun 20, 2021
1 parent aae042c commit ed508e1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
tlyric - 翻译后歌词
romalrc- 罗马音歌词
例:
--lyric-no tlyric --lyric-no romalrc 将只下载源语言歌词
--lyric-no tlyric romalrc 将只下载源语言歌词

登陆:
--phone 手机 网易账户手机号
Expand Down
2 changes: 1 addition & 1 deletion pyncm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from time import time
import requests,logging,json

__version__ = "1.6.3.5"
__version__ = "1.6.3.6"

class Session(requests.Session):
'''Represents an API session'''
Expand Down
2 changes: 1 addition & 1 deletion pyncm/utils/lrcparser.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ def DumpLyrics(self,delimiter='\t'):
Lyrics = []
for tag,_lyric in lyrics:
Lyrics.append(_lyric)
lrc += '\n' + f'[{stamp2tag(timestamp)}]{delimiter.join(Lyrics[1:])}'
lrc += '\n' + f'[{stamp2tag(timestamp)}]{delimiter.join(Lyrics)}'
return lrc # Done

@staticmethod
Expand Down

0 comments on commit ed508e1

Please sign in to comment.