swatting another listdir

master
endorphant 2018-02-25 16:26:58 -05:00
parent 52496aaf51
commit 5f4207d976
1 changed files with 4 additions and 1 deletions

View File

@ -405,7 +405,10 @@ def www_neighbors():
url = config.LIVE+user+"/"+userRC["publish dir"]
lastfile = ""
files = os.listdir(os.path.join("/home", user, ".ttbp", "entries"))
try:
files = os.listdir(os.path.join("/home", user, ".ttbp", "entries"))
except OSError:
files = []
files.sort()
for filename in files:
if valid(filename):