From a67b1efd6ef96b9f942dfb521ede1d07eb1b0ed9 Mon Sep 17 00:00:00 2001 From: RaNaN Date: Mon, 7 Feb 2011 22:11:27 +0100 Subject: closed #234 --- module/Utils.py | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'module/Utils.py') diff --git a/module/Utils.py b/module/Utils.py index de07a9450..2d8a0423e 100644 --- a/module/Utils.py +++ b/module/Utils.py @@ -2,10 +2,17 @@ """ Store all usefull functions here """ +import os import sys import time from os.path import join +def chmod(*args): + try: + os.chmod(*args) + except: + pass + def save_join(*args): """ joins a path, encoding aware """ paths = [] -- cgit v1.2.3