Procházet zdrojové kódy

Fix plugins after former refactoring

Alois Mahdal před 10 roky
rodič
revize
25bbc2b6f0
2 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. 1
    1
      plugins/dump.py
  2. 1
    1
      plugins/sh.py

+ 1
- 1
plugins/dump.py Zobrazit soubor

@@ -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 Zobrazit soubor

@@ -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)