]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
client.py: add a newline to "myself.furl" contents
authorBrian Warner <warner@lothar.com>
Sat, 18 Aug 2007 06:28:22 +0000 (23:28 -0700)
committerBrian Warner <warner@lothar.com>
Sat, 18 Aug 2007 06:28:22 +0000 (23:28 -0700)
src/allmydata/client.py

index 7b5f51828355563eff1537c4344196511143f7c7..e15cae28578b1f9e83461085f1bd30a27b5abcf4 100644 (file)
@@ -122,7 +122,7 @@ class Client(node.Node, Referenceable):
 
         self.my_furl = self.tub.registerReference(self, my_old_name)
         f = open(MYSELF_FURL_PATH, "w")
-        f.write(self.my_furl)
+        f.write(self.my_furl + "\n")
         f.close()
 
         ic = IntroducerClient(self.tub, self.introducer_furl, self.my_furl)