- commit
- f00e48e893bd6b2ec089c3fdb7e5986eded4e6ea
- parent
- 0a33d540bb45de61274be7c68197c968d7bb0528
- Author
- Tobias Bengfort <tobias.bengfort@posteo.de>
- Date
- 2024-08-03 17:51
make __version__ comply with pep440
Diffstat
| M | cplay.py | 4 | ++-- |
1 files changed, 2 insertions, 2 deletions
diff --git a/cplay.py b/cplay.py
@@ -13,7 +13,7 @@ import termios 13 13 import time 14 14 from contextlib import contextmanager 15 1516 -1 __version__ = 'cplay-ng 5.3.0'-1 16 __version__ = '5.3.1' 17 17 18 18 AUDIO_EXTENSIONS = [ 19 19 'mp3', 'ogg', 'oga', 'opus', 'flac', 'm4a', 'm4b', 'wav', 'mid', 'wma' @@ -730,7 +730,7 @@ class Application: 730 730 if self.input.active: 731 731 status = f'{self.input.prompt}{self.input.str}█' 732 732 elif self.tab == helplist:733 -1 status = __version__-1 733 status = f'cplay-ng {__version__}' 734 734 elif player.is_playing: 735 735 status = f'Playing {player.get_title()}' 736 736 else: