diff options
| author | Michael Vogt <michael.vogt@ubuntu.com> | 2011-11-15 16:55:07 +0100 |
|---|---|---|
| committer | Michael Vogt <michael.vogt@ubuntu.com> | 2011-11-15 16:55:07 +0100 |
| commit | 92cc00805d175dc013d544bcee603e8a0c031c2b (patch) | |
| tree | e33d5d7e7ae3910b67b3193401bf331aa5e80b07 /python/tarfile.cc | |
| parent | a0c9ec82095d2e09715e5dc953119ec4fa7b4c2e (diff) | |
| parent | fcd268692450231c98bfb6ac2e573ce466e014c7 (diff) | |
| download | python-apt-92cc00805d175dc013d544bcee603e8a0c031c2b.tar.gz | |
merged from lp:~mvo/apt/mvo
Diffstat (limited to 'python/tarfile.cc')
| -rw-r--r-- | python/tarfile.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/tarfile.cc b/python/tarfile.cc index cdfe0a7c..bd903b57 100644 --- a/python/tarfile.cc +++ b/python/tarfile.cc @@ -348,7 +348,7 @@ static const char *tarfile_extractall_doc = "can be used to change the target directory."; static PyObject *tarfile_extractall(PyObject *self, PyObject *args) { - string cwd = SafeGetCWD(); + std::string cwd = SafeGetCWD(); char *rootdir = 0; if (PyArg_ParseTuple(args,"|s:extractall",&rootdir) == 0) return 0; |
