summaryrefslogtreecommitdiff
path: root/python/cdrom.cc
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2011-11-10 17:20:58 +0100
committerMichael Vogt <michael.vogt@ubuntu.com>2011-11-10 17:20:58 +0100
commit628d7caf9ca6ee819398a4b88c23e42094fe2c10 (patch)
tree06d0c31214151eadd35a945dc6e063e2e52dd38d /python/cdrom.cc
parent1948d5d03887eb81ea7797c0f23049ef6c3895ce (diff)
downloadpython-apt-628d7caf9ca6ee819398a4b88c23e42094fe2c10.tar.gz
fix build against apt in experimental
Diffstat (limited to 'python/cdrom.cc')
-rw-r--r--python/cdrom.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/cdrom.cc b/python/cdrom.cc
index 6ac16d59..46bb769c 100644
--- a/python/cdrom.cc
+++ b/python/cdrom.cc
@@ -67,7 +67,7 @@ static PyObject *cdrom_ident(PyObject *Self,PyObject *Args)
PyCdromProgress progress;
progress.setCallbackInst(pyCdromProgressInst);
- string ident;
+ std::string ident;
bool res = Cdrom.Ident(ident, &progress);
if (res)
@@ -94,7 +94,7 @@ static PyObject *cdrom_ident_old(PyObject *Self,PyObject *Args)
PyCdromProgress progress;
progress.setCallbackInst(pyCdromProgressInst);
- string ident;
+ std::string ident;
bool res = Cdrom.Ident(ident, &progress);
PyObject *boolres = PyBool_FromLong(res);