summaryrefslogtreecommitdiff
path: root/python/tar.cc
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2006-05-08 16:39:11 +0200
committerMichael Vogt <michael.vogt@ubuntu.com>2006-05-08 16:39:11 +0200
commitfe5f0be5325814bebafed82867cc7b81ce0c82e2 (patch)
treed404ef816e7dbeb9dcb7e364c692a46995ef5bb1 /python/tar.cc
parentf4fd803ae9d2a0bbdb03f5b9fc21e432ebbdb0b3 (diff)
downloadpython-apt-fe5f0be5325814bebafed82867cc7b81ce0c82e2.tar.gz
* merged r189 from mainline
Diffstat (limited to 'python/tar.cc')
-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";