[Treepkg-commits] r88 - trunk/treepkg
scm-commit@wald.intevation.org
scm-commit at wald.intevation.org
Fri Jun 20 12:19:26 CEST 2008
Author: bh
Date: 2008-06-20 12:19:26 +0200 (Fri, 20 Jun 2008)
New Revision: 88
Modified:
trunk/treepkg/debian.py
Log:
Fix spelling of the DebianControlFile.handle_source_paragraph method.
Modified: trunk/treepkg/debian.py
===================================================================
--- trunk/treepkg/debian.py 2008-06-19 14:27:49 UTC (rev 87)
+++ trunk/treepkg/debian.py 2008-06-20 10:19:26 UTC (rev 88)
@@ -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])
More information about the Treepkg-commits
mailing list