Fix exception in minionswarm

This commit is contained in:
Thomas S Hatch 2012-06-11 14:43:42 -06:00
parent d3c69cde85
commit bb9558b316

View file

@ -126,7 +126,7 @@ class Swarm(object):
os.remove(path)
os.remove('{0}.pid'.format(path))
shutil.rmtree('{0}.d'.format(path))
except:
except (OSError, IOError):
pass
def start(self):