Skip to content

Commit 41f928a

Browse files
author
SM_SAYEED
committed
debugging
1 parent 3f73abb commit 41f928a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

app.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -331,11 +331,11 @@ def property_detail(property_name, tab):
331331
ORDER BY uploaded_at DESC
332332
""", (property_name, tab))
333333
uploads = c.fetchall()
334-
uploads = [
335-
(fname, source, description, uploaded_at)
336-
for (fname, source, description, uploaded_at) in uploads
337-
if os.path.exists(os.path.join(app.config['UPLOAD_FOLDER'], property_name, tab, fname))
338-
]
334+
# uploads = [
335+
# (fname, source, description, uploaded_at)
336+
# for (fname, source, description, uploaded_at) in uploads
337+
# if os.path.exists(os.path.join(app.config['UPLOAD_FOLDER'], property_name, tab, fname))
338+
# ]
339339

340340
return render_template(
341341
'property_detail.html',

0 commit comments

Comments
 (0)