aboutsummaryrefslogtreecommitdiff
path: root/shellgenerator.py
diff options
context:
space:
mode:
Diffstat (limited to 'shellgenerator.py')
-rwxr-xr-xshellgenerator.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/shellgenerator.py b/shellgenerator.py
index cf94925..7795b5a 100755
--- a/shellgenerator.py
+++ b/shellgenerator.py
@@ -33,7 +33,7 @@ def do_conf_file(src, dst, variables):
if isinstance(var, str):
pass
elif isinstance(var, nodes.StringStatement):
- var = var.get_string()
+ var = var.get_value()
else:
raise RuntimeError('Tried to replace a variable with something other than a string.')
else: