Throw an error if user put an invalid port range in config file

Fix #117
This commit is contained in:
Julien Duponchelle
2015-05-06 10:40:51 +02:00
parent 3ba4789ba6
commit ed39afbf3d
3 changed files with 12 additions and 2 deletions

View File

@ -152,7 +152,7 @@ class Project:
try:
shutil.rmtree(old_path)
except OSError as e:
raise aiohttp.web.HTTPConflict("Can't remove temporary directory {}: {}".format(old_path, e))
raise aiohttp.web.HTTPConflict(text="Can't remove temporary directory {}: {}".format(old_path, e))
@property
def name(self):