diff options
| author | Paul Varner <fuzzyray@gentoo.org> | 2011-07-15 14:59:23 -0500 |
|---|---|---|
| committer | Paul Varner <fuzzyray@gentoo.org> | 2011-07-15 14:59:23 -0500 |
| commit | 0382df255affced93b59322611a58bf98aec6c64 (patch) | |
| tree | f7cb673a7f6a4e419aeec7072c9d59373876b6a2 | |
| parent | b150d5882b03a35a9b83707e4ed505446ab06b8a (diff) | |
| download | gentoolkit-0382df255affced93b59322611a58bf98aec6c64.tar.gz | |
Do not index ChangeLog entries with an invalid CPV. (Bug 375293)
| -rw-r--r-- | pym/gentoolkit/helpers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/gentoolkit/helpers.py b/pym/gentoolkit/helpers.py index 225a198..a0b29ab 100644 --- a/pym/gentoolkit/helpers.py +++ b/pym/gentoolkit/helpers.py @@ -175,7 +175,7 @@ class ChangeLog(object): if not pkg_name.strip(): continue try: - entry_ver = CPV(pkg_name) + entry_ver = CPV(pkg_name, validate=True) except errors.GentoolkitInvalidCPV: if self.invalid_entry_is_fatal: raise ValueError(entry_ver) |
