projects
/
portage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3fb6955
)
parse_layout_conf: fix inverted update-changelog
author
Zac Medico
<zmedico@gentoo.org>
Thu, 27 Oct 2011 05:32:34 +0000
(22:32 -0700)
committer
Zac 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
patch
|
blob
|
history
diff --git
a/pym/portage/repository/config.py
b/pym/portage/repository/config.py
index a6d13e0839496a52411ed0a4f2eac9b419d44c5b..5659b14dace596536d6104c5b3bb2fcd79f73b29 100644
(file)
--- a/
pym/portage/repository/config.py
+++ b/
pym/portage/repository/config.py
@@
-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() \
- == '
fals
e'
+ == '
tru
e'
raw_formats = layout_data.get('profile-formats')
if raw_formats is None: