aboutsummaryrefslogtreecommitdiff
path: root/shellgenerator.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2013-01-25 22:08:49 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2013-01-25 22:08:49 +0200
commitd5c50ce60afc49bde361455fddc9b030ded72ffa (patch)
tree954617597f0bd2f33b610ddb8af482b10e613b86 /shellgenerator.py
parentf5835d85e2ae098aacb3f585bc63bea5c9e7884f (diff)
downloadmeson-d5c50ce60afc49bde361455fddc9b030ded72ffa.zip
meson-d5c50ce60afc49bde361455fddc9b030ded72ffa.tar.gz
meson-d5c50ce60afc49bde361455fddc9b030ded72ffa.tar.bz2
Fixed changed function name.
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: