]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
Fix an import that broke during rebasing.
authorDaira Hopwood <daira@jacaranda.org>
Tue, 15 Sep 2015 17:46:00 +0000 (18:46 +0100)
committerDaira Hopwood <daira@jacaranda.org>
Thu, 1 Oct 2015 00:19:49 +0000 (01:19 +0100)
Signed-off-by: Daira Hopwood <daira@jacaranda.org>
src/allmydata/frontends/magic_folder.py

index da64d97d7c9ee6a75c3a09644c018bd50a09b534..859f671192ed152dbf017876cc3624f8a9eede43 100644 (file)
@@ -536,7 +536,7 @@ class Downloader(QueueMixin):
         d = file_node.download_best_version()
         def succeeded(res):
             d2 = defer.succeed(res)
-            absname = abspath_expanduser_unicode(name, base=self._local_path_u)
+            absname = fileutil.abspath_expanduser_unicode(name, base=self._local_path_u)
             d2.addCallback(lambda result: self._write_downloaded_file(absname, result, is_conflict=False))
             def do_update_db(full_path):
                 filecap = file_node.get_uri()