summaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
Diffstat (limited to 'bootstrap')
-rwxr-xr-xbootstrap/template.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/bootstrap/template.py b/bootstrap/template.py
index 2eb70fd693e..1e101c8f0e0 100755
--- a/bootstrap/template.py
+++ b/bootstrap/template.py
@@ -46,11 +46,11 @@ def render(dists):
if path.endswith('.sh'):
os.chmod(path, 0o755)
- key = 'Vagrantfile'
- path = os.path.join(OUT, key)
- log.info('%s: render "%s" to %s', dist, key, path)
- with io.open(path, mode='wt', encoding='utf8') as fp:
- fp.write(VAGRANTFILE)
+ key = 'Vagrantfile'
+ path = os.path.join(OUT, key)
+ log.info('%s: render "%s" to %s', dist, key, path)
+ with io.open(path, mode='wt', encoding='utf8') as fp:
+ fp.write(VAGRANTFILE)
def main():