소스 검색

Small bugfix in plugins error message

Yann Weber 8 년 전
부모
커밋
39a5ba77cc
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      lodel/plugin/plugins.py

+ 1
- 1
lodel/plugin/plugins.py 파일 보기

@@ -454,7 +454,7 @@ name differ from the one found in plugin's init file"
454 454
         if not(activable is True):
455 455
             msg = "Plugin %s is not activable : %s"
456 456
             msg %= (self.name, activable)
457
-            raise PluginError(activable)
457
+            raise PluginError(msg)
458 458
 
459 459
         #Circular dependencie detection
460 460
         if self.name in self._load_called:

Loading…
취소
저장