tracetool: avoid str.rpartition() Python 2.5 function
commitb3ef0ade57ff29e33d3204ca2f48b1e36108116e
authorStefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Fri, 27 Apr 2012 14:12:04 +0000 (27 15:12 +0100)
committerStefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Tue, 1 May 2012 19:15:28 +0000 (1 20:15 +0100)
tree6b1521b7005e526d5a260658b325ee6beff6430c
parent45d6c787751650ac332447444c192201dfc526af
tracetool: avoid str.rpartition() Python 2.5 function

The str.rpartition() function is related to str.split() and is used for
splitting strings.  It was introduced in Python 2.5 and therefore cannot
be used in tracetool as Python 2.4 compatibility is required.

Replace the code using str.rsplit().

Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Reviewed-by: LluĂ­s Vilanova <vilanova@ac.upc.edu>
scripts/tracetool/__init__.py