fix path in cleanDir. #545

This commit is contained in:
clinton-hall 2014-09-09 06:21:38 +09:30
commit 71d740e14e

View file

@ -652,7 +652,7 @@ def cleanDir(path, section, subsection):
try: try:
shutil.rmtree(path, onerror=onerror) shutil.rmtree(path, onerror=onerror)
except: except:
logger.error("Unable to delete directory %s" % (dirName)) logger.error("Unable to delete directory %s" % (path))
def create_torrent_class(clientAgent): def create_torrent_class(clientAgent):
# Hardlink solution for Torrents # Hardlink solution for Torrents