소스 검색

Fix plugins after former refactoring

Alois Mahdal 10 년 전
부모
커밋
25bbc2b6f0
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 1
    1
      plugins/dump.py
  2. 1
    1
      plugins/sh.py

+ 1
- 1
plugins/dump.py 파일 보기

@@ -6,5 +6,5 @@ import sardine
6 6
 class Plugin(sardine.BasePlugin):
7 7
 
8 8
     def render_plain(self):
9
-        out = "args = %s" % repr(self.args)
9
+        out = "args = %s" % repr(self.data.args)
10 10
         return out

+ 1
- 1
plugins/sh.py 파일 보기

@@ -8,4 +8,4 @@ import sardine
8 8
 class Plugin(sardine.BasePlugin):
9 9
 
10 10
     def render_plain(self):
11
-        return subprocess.check_output(self.args)
11
+        return subprocess.check_output(self.data.args)