From: Daira Hopwood Date: Tue, 21 Apr 2015 22:53:39 +0000 (+0100) Subject: Change when _scan is called. X-Git-Url: https://git.rkrishnan.org/reedownlee?a=commitdiff_plain;h=f436703707dd984c938f6fca9522329e0d6598c1;p=tahoe-lafs%2Ftahoe-lafs.git Change when _scan is called. Signed-off-by: Daira Hopwood --- diff --git a/src/allmydata/frontends/drop_upload.py b/src/allmydata/frontends/drop_upload.py index 3f529904..8664da1a 100644 --- a/src/allmydata/frontends/drop_upload.py +++ b/src/allmydata/frontends/drop_upload.py @@ -119,11 +119,12 @@ class DropUploader(service.MultiService): self.warn("WARNING: cannot backup symlink %s" % quote_local_unicode_path(childpath)) elif isdir: print "isdir" - # recurse on the child directory - self._scan(childpath) must_upload = self._check_db_file(childpath.decode('UTF-8')) if must_upload: self._append_to_deque(childpath) + + # recurse on the child directory + self._scan(childpath) elif isfile: print "isfile %s" % (childpath,) must_upload = self._check_db_file(childpath.decode('UTF-8'))