Browse Source

revert commit c77e515dea9a169256eb37a38423b6c6d9dfc45a

Damien ACCORSI 8 years ago
parent
commit
37b3581125
1 changed files with 1 additions and 4 deletions
  1. 1 4
      tracim/tracim/lib/content.py

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

@@ -241,10 +241,7 @@ class ContentApi(object):
241 241
     def _base_query(self, workspace: Workspace=None):
242 242
         result = self.__real_base_query(workspace)
243 243
 
244
-        # FIXME - 2016-10-17 - D.A. - Do not show temporary files
245
-        result = result.filter(Content.is_temporary == False)
246
-
247
-        if not self._show_deleted:
244
+       if not self._show_deleted:
248 245
             result = result.filter(Content.is_deleted==False)
249 246
 
250 247
         if not self._show_archived: