summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorJürg Billeter <j@bitron.ch>2019-08-01 12:39:10 +0200
committerJürg Billeter <j@bitron.ch>2019-08-01 12:39:10 +0200
commit59e0812c03d4ceaa86879171296542517c473db0 (patch)
tree9bec5dd23f2c41f72f729eb9366489d351692562 /contrib
parent3d224253b3448517f5bd36e68e9ff6ac205a0ca9 (diff)
downloadbuildstream-59e0812c03d4ceaa86879171296542517c473db0.tar.gz
contrib/update_committers.py: Fix typo in template file name
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/update_committers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/update_committers.py b/contrib/update_committers.py
index f0faac327..f2bdb9026 100755
--- a/contrib/update_committers.py
+++ b/contrib/update_committers.py
@@ -61,7 +61,7 @@ def create_committers_file(committers: OrderedDict):
contrib_directory = os.path.join(find_repository_root(), 'contrib')
file_loader = FileSystemLoader(contrib_directory)
env = Environment(loader=file_loader)
- template = env.get_template('COMITTERS.rst.j2')
+ template = env.get_template('COMMITTERS.rst.j2')
render_output = template.render(committers=committers, get_table_entry=get_table_entry)
committers_file = os.path.join(contrib_directory, 'COMMITTERS.rst')