Browse Source

fix webdav: variable assignement

Bastien Sevajol (Algoo) 8 years ago
parent
commit
58df493761
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tracim/tracim/lib/content.py

+ 1 - 1
tracim/tracim/lib/content.py View File

@@ -537,7 +537,7 @@ class ContentApi(object):
537 537
 
538 538
             # Search into parent folder (if already deep)
539 539
             if folder:
540
-                folder_query\
540
+                folder_query = folder_query\
541 541
                     .filter(
542 542
                         Content.parent_id == folder.content_id,
543 543
                     )