Quellcode durchsuchen

Fix regression from renaming exception

Alois Mahdal vor 10 Jahren
Ursprung
Commit
9d1bf46424
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1
    1
      plugins/qotd.py

+ 1
- 1
plugins/qotd.py Datei anzeigen

@@ -13,7 +13,7 @@ class Plugin(sardine.BasePlugin):
13 13
             self.host = args.pop(0)
14 14
             self.port = args.pop(0) if args else 17
15 15
         except IndexError:
16
-            raise sardine.SardinePluginUsageError("HOST [PORT]")
16
+            raise sardine.PluginUsageError("HOST [PORT]")
17 17
         self.port = int(self.port)
18 18
 
19 19
     def _fetch_qotd(self):