1
0
mirror of https://github.com/spl0k/supysonic.git synced 2024-12-22 17:06:17 +00:00

Changed watcher script warning category

This commit is contained in:
spl0k 2019-06-16 15:29:52 +02:00
parent 373beaa92e
commit 77805700d5

View File

@ -13,6 +13,7 @@ from supysonic.daemon import main
if __name__ == "__main__": if __name__ == "__main__":
warnings.warn( warnings.warn(
"You're using an old version of the `supysonic-watcher` script.\nNo worries though, it will still work (for some time), but you should call `supysonic-daemon` instead.", "You're using an old version of the `supysonic-watcher` script.\nNo worries "
DeprecationWarning) "though, it will still work (for some time), but you should call `supysonic-daemon` instead."
)
main() main()