parse_layout_conf: fix inverted update-changelog
authorZac Medico <zmedico@gentoo.org>
Thu, 27 Oct 2011 05:32:34 +0000 (22:32 -0700)
committerZac Medico <zmedico@gentoo.org>
Thu, 27 Oct 2011 05:32:34 +0000 (22:32 -0700)
The logic got inverted when parse_layout_conf was split out in commit
0be173a54a5248cfd70a3543d7099d2dd3ee254b.

pym/portage/repository/config.py

index a6d13e0839496a52411ed0a4f2eac9b419d44c5b..5659b14dace596536d6104c5b3bb2fcd79f73b29 100644 (file)
@@ -654,7 +654,7 @@ def parse_layout_conf(repo_location, repo_name=None):
        data['manifest-hashes'] = manifest_hashes
 
        data['update-changelog'] = layout_data.get('update-changelog', 'false').lower() \
-               == 'false'
+               == 'true'
 
        raw_formats = layout_data.get('profile-formats')
        if raw_formats is None: