summaryrefslogtreecommitdiffstats
path: root/dsextras.py
diff options
context:
space:
mode:
authorJohan Dahlin <zilch@src.gnome.org>2003-01-24 14:11:18 +0000
committerJohan Dahlin <zilch@src.gnome.org>2003-01-24 14:11:18 +0000
commitc3b7bdcd98fb23599a9cd7a4912f77e1098498cc (patch)
tree76efe37288e7dd7a68504ac969f60c11cd3ebbe2 /dsextras.py
parent17385959f702c0f5f36265da0cc3c1f252c1ebb9 (diff)
downloadpygobject-c3b7bdcd98fb23599a9cd7a4912f77e1098498cc.tar.gz
pygobject-c3b7bdcd98fb23599a9cd7a4912f77e1098498cc.tar.xz
pygobject-c3b7bdcd98fb23599a9cd7a4912f77e1098498cc.zip
Fix template bustage.
* dsextras.py (InstallLib.add_template_option): Fix template bustage.
Diffstat (limited to 'dsextras.py')
-rw-r--r--dsextras.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/dsextras.py b/dsextras.py
index 4ef3e9e..620a896 100644
--- a/dsextras.py
+++ b/dsextras.py
@@ -38,7 +38,7 @@ class InstallLib(install_lib):
self.install_dir = install_dir
def add_template_option(self, name, value):
- self.template_options['@%s@'] = value
+ self.template_options['@%s@' % name] = value
def install_template(self, filename, install_dir):
"""Install template filename into target directory install_dir."""