Explorar el Código

Clarify error message

Alois Mahdal hace 10 años
padre
commit
d5e0f587fd
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      include/sardine.py

+ 1
- 1
include/sardine.py Ver fichero

@@ -37,7 +37,7 @@ class BasePlugin(object):
37 37
         method_n = "render_" + self.data.fmt
38 38
 
39 39
         def ex(__):
40
-            raise SardinePluginError("method not defined: " + method_n)
40
+            raise SardinePluginError("plugin method not defined: " + method_n)
41 41
 
42 42
         render_fn = getattr(self, method_n, ex)
43 43
         return render_fn()