diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/c_client.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/c_client.py b/src/c_client.py index d006d30..31ed3b5 100644 --- a/src/c_client.py +++ b/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]))) |