summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOtavio Salvador <otavio@debian.org>2006-03-28 08:31:14 -0300
committerOtavio Salvador <otavio@debian.org>2006-03-28 08:31:14 -0300
commit8cc9bc319a5ed5237e4c4a40da241ee1159d9233 (patch)
tree1e35ee1de23bb324cfa7b61a0a78bd0191f5e019
parentde94cc6cd97201a9cd3fc845b06b97e46251403d (diff)
downloadpython-apt-8cc9bc319a5ed5237e4c4a40da241ee1159d9233.tar.gz
Fix documentation format.
-rw-r--r--python/tar.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/tar.cc b/python/tar.cc
index 20fb1f5f..22c0327e 100644
--- a/python/tar.cc
+++ b/python/tar.cc
@@ -88,7 +88,7 @@ bool ProcessTar::DoItem(Item &Itm,int &Fd)
// ---------------------------------------------------------------------
/* */
char *doc_tarExtract =
-"tarExtract(File,Func,Comp) -> None"
+"tarExtract(File,Func,Comp) -> None\n"
"The tar file referenced by the file object File, Func called for each\n"
"Tar member. Comp must be the string \"gzip\" (gzip is automatically invoked) \n";
PyObject *tarExtract(PyObject *Self,PyObject *Args)
@@ -128,7 +128,7 @@ PyObject *tarExtract(PyObject *Self,PyObject *Args)
// ---------------------------------------------------------------------
/* */
char *doc_debExtract =
-"debExtract(File,Func,Chunk) -> None"
+"debExtract(File,Func,Chunk) -> None\n"
"The deb referenced by the file object File is examined. The AR member\n"
"given by Chunk is treated as a tar.gz and fed through Func like\n"
"tarExtract\n";