]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
simplify _db_file_is_uploaded
authorDavid Stainton <dstainton415@gmail.com>
Wed, 15 Jul 2015 19:19:08 +0000 (12:19 -0700)
committerDaira Hopwood <daira@jacaranda.org>
Mon, 20 Jul 2015 23:48:10 +0000 (00:48 +0100)
src/allmydata/frontends/magic_folder.py

index 9e83c3f1cafc79966171ec1554c2f01bed9d793f..077affabc81da25491e91d0c5ba81379e04f9162 100644 (file)
@@ -233,11 +233,7 @@ class MagicFolder(service.MultiService):
         """
         assert self._db != None
         r = self._db.check_file(childpath)
-        filecap = r.was_uploaded()
-        if filecap is False:
-            return False
-        else:
-            return True
+        return r.was_uploaded()
 
     def _scan(self, localpath):
         if not os.path.isdir(localpath):