From 77805700d5a4b94820234d204493e1e417e393e0 Mon Sep 17 00:00:00 2001 From: spl0k Date: Sun, 16 Jun 2019 15:29:52 +0200 Subject: [PATCH] Changed watcher script warning category --- bin/supysonic-watcher | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/bin/supysonic-watcher b/bin/supysonic-watcher index ff5b669..33a6219 100755 --- a/bin/supysonic-watcher +++ b/bin/supysonic-watcher @@ -13,6 +13,7 @@ from supysonic.daemon import main if __name__ == "__main__": 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.", - DeprecationWarning) + "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." + ) main()