From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:42795) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RFp8P-0000xc-KM for qemu-devel@nongnu.org; Mon, 17 Oct 2011 11:29:51 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RFp8O-0006Ad-0e for qemu-devel@nongnu.org; Mon, 17 Oct 2011 11:29:49 -0400 Received: from mx1.redhat.com ([209.132.183.28]:37152) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RFp8N-00069x-O1 for qemu-devel@nongnu.org; Mon, 17 Oct 2011 11:29:47 -0400 From: Luiz Capitulino Date: Mon, 17 Oct 2011 13:29:35 -0200 Message-Id: <1318865377-3328-3-git-send-email-lcapitulino@redhat.com> In-Reply-To: <1318865377-3328-1-git-send-email-lcapitulino@redhat.com> References: <1318865377-3328-1-git-send-email-lcapitulino@redhat.com> Subject: [Qemu-devel] [PATCH 2/4] qapi-types.py: Don't build paths by hand List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: mdroth@linux.vnet.ibm.com Cc: aliguori@us.ibm.com, qemu-devel@nongnu.org Use os.path.join() instead. Signed-off-by: Luiz Capitulino --- scripts/qapi-types.py | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/qapi-types.py b/scripts/qapi-types.py index 986ff1e..8df4b72 100644 --- a/scripts/qapi-types.py +++ b/scripts/qapi-types.py @@ -177,10 +177,10 @@ if __name__ == '__main__': if o in ("-p", "--prefix"): prefix = a elif o in ("-o", "--output-dir"): - output_dir = a + "/" + output_dir = a - c_file = output_dir + prefix + c_file - h_file = output_dir + prefix + h_file + c_file = os.path.join(output_dir, prefix + c_file) + h_file = os.path.join(output_dir, prefix + h_file) try: os.makedirs(output_dir) -- 1.7.7.rc3