Skip to content

Commit c3728ef

Browse files
committed
fix duplicate line
1 parent 79c5a6b commit c3728ef

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Yet Another Spotify Command Line Lyrics
22
==========================================
33

4-
![Lyrics-Screenshot](https://github.com/goktug97/yet-another-spotify-lyrics/blob/master/screenshot.jpg)
4+
![Lyrics-Screenshot](https://raw.githubusercontent.com/goktug97/yet-another-spotify-lyrics/master/screenshot.jpg)
55

66
## Requirements
77
* ueberzug

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
long_description = f.read()
99

1010
setup(name='yet-another-spotify-lyrics',
11-
version='1.0.1',
11+
version='1.0.2',
1212
description='Command Line Spotify Lyrics with Album Cover',
1313
author='Göktuğ Karakaşlı',
1414
author_email='[email protected]',
@@ -17,7 +17,7 @@
1717
long_description_content_type='text/markdown',
1818
url='https://github.com/goktug97/yet-another-spotify-lyrics',
1919
download_url=(
20-
'https://github.com/goktug97/yet-another-spotify-lyrics/archive/v1.0.1.tar.gz'),
20+
'https://github.com/goktug97/yet-another-spotify-lyrics/archive/v1.0.2.tar.gz'),
2121
py_modules=[os.path.splitext(os.path.basename(path))[0]
2222
for path in ['spotify_lyrics']],
2323
entry_points={

spotify_lyrics.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,8 @@ def main(canvas):
173173
for i in range(current_line, current_line + n_entries):
174174
delete_line()
175175
print(boldify(wrapped_lines[i]))
176+
move_cursor(0, n_entries+start_row)
177+
delete_line()
176178

177179
c = key_poller.poll()
178180
if c == 'q':

0 commit comments

Comments
 (0)