]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
Fix a logging bug for Unicode nicknames.
authorDaira Hopwood <daira@jacaranda.org>
Tue, 8 Sep 2015 14:23:33 +0000 (15:23 +0100)
committerDaira Hopwood <daira@jacaranda.org>
Wed, 30 Sep 2015 15:45:26 +0000 (16:45 +0100)
Signed-off-by: Daira Hopwood <daira@jacaranda.org>
src/allmydata/frontends/magic_folder.py

index 6689947a5f2465d8b250dddd5f8f0dc8ee8f7103..2b2b9ffd925f590f70e27c56f7319095ced3551c 100644 (file)
@@ -466,7 +466,7 @@ class Downloader(QueueMixin):
             self._download_scan_batch[name] = [(file_node, metadata)]
 
     def _scan_remote(self, nickname, dirnode):
-        self._log("_scan_remote nickname %s" % nickname)
+        self._log("_scan_remote nickname %r" % (nickname,))
         d = dirnode.list()
         def scan_listing(listing_map):
             for name in listing_map.keys():