diff options
author | jaseg <code@jaseg.net> | 2017-07-13 00:37:25 +0200 |
---|---|---|
committer | jaseg <code@jaseg.net> | 2017-07-13 00:37:25 +0200 |
commit | e52a9545f7e14e0eda5e78d6bb255f019cab4f87 (patch) | |
tree | fe04c31434e1a9a7ebc6e8589585765bdf47ead7 /README.rst | |
parent | cb0cfd07c93519dd5214254db993dcbd7c817d8c (diff) | |
download | python-mpv-e52a9545f7e14e0eda5e78d6bb255f019cab4f87.tar.gz python-mpv-e52a9545f7e14e0eda5e78d6bb255f019cab4f87.tar.bz2 python-mpv-e52a9545f7e14e0eda5e78d6bb255f019cab4f87.zip |
Fix message handler registration and advanced README example
Diffstat (limited to 'README.rst')
-rw-r--r-- | README.rst | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -78,7 +78,7 @@ Advanced Usage def time_observer(_name, value): # Here, _value is either None if nothing is playing or a float containing # fractional seconds since the beginning of the file. - print('Now playing at {:.2f}s'.format(value))) + print('Now playing at {:.2f}s'.format(value)) player.fullscreen = True player.loop = 'inf' |