Mercurial > treepkg
changeset 163:674d14305e97
Fix spelling of the DebianControlFile.handle_source_paragraph method.
author | Bernhard Herzog <bh@intevation.de> |
---|---|
date | Fri, 20 Jun 2008 10:19:26 +0000 |
parents | 876db132431a |
children | a68a4e22549c |
files | treepkg/debian.py |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/treepkg/debian.py Thu Jun 19 14:27:49 2008 +0000 +++ b/treepkg/debian.py Fri Jun 20 10:19:26 2008 +0000 @@ -40,11 +40,11 @@ paragraphs.append(lines[:empty_line]) lines = lines[empty_line + 1:] - self.handle_souce_paragraph(paragraphs[0]) + self.handle_source_paragraph(paragraphs[0]) for paragraph in paragraphs[1:]: self.handle_package_paragraph(paragraph) - def handle_souce_paragraph(self, paragraph): + def handle_source_paragraph(self, paragraph): raw_deps = extract_value_for_key(paragraph, "Build-Depends:") for dep in raw_deps.split(","): self.build_depends.append(dep.split()[0])