From 4aac32998c2b173b84aec0b020aa086fef4b1423 Mon Sep 17 00:00:00 2001 From: marha Date: Thu, 16 Aug 2012 14:48:54 +0200 Subject: libxcb xserver mesa git update 16 Aug 2012 --- libxcb/src/c_client.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'libxcb/src') diff --git a/libxcb/src/c_client.py b/libxcb/src/c_client.py index d006d305d..31ed3b58d 100644 --- a/libxcb/src/c_client.py +++ b/libxcb/src/c_client.py @@ -5,6 +5,7 @@ from functools import reduce import getopt import os import sys +import errno import time import re @@ -2902,8 +2903,11 @@ Refer to the README file in xcb/proto for more info. raise # Ensure the man subdirectory exists -if not os.path.exists('man'): +try: os.mkdir('man') +except OSError, e: + if e.errno != errno.EEXIST: + raise today = time.strftime('%Y-%m-%d', time.gmtime(os.path.getmtime(args[0]))) -- cgit v1.2.3