Fix indentation for sed plugin

This commit is contained in:
Anders Ingemann 2013-11-21 15:52:26 +01:00
parent 57a0dd4b9f
commit d05c97afef

View file

@ -9,7 +9,7 @@ class DoSeds(Task):
description = 'Sedding files' description = 'Sedding files'
phase = phases.system_modification phase = phases.system_modification
after = [AptUpgrade] after = [AptUpgrade]
def run(self, info):
def run(self, info):
chroot_path = os.path.join(info.root, info.manifest.plugins['sed']['file']) chroot_path = os.path.join(info.root, info.manifest.plugins['sed']['file'])
sed_i(chroot_path, info.manifest.plugins['sed']['find'], info.manifest.plugins['sed']['replace']) sed_i(chroot_path, info.manifest.plugins['sed']['find'], info.manifest.plugins['sed']['replace'])