projects
/
tahoe-lafs
/
tahoe-lafs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9996836
)
client.py: add a newline to "myself.furl" contents
author
Brian Warner
<warner@lothar.com>
Sat, 18 Aug 2007 06:28:22 +0000
(23:28 -0700)
committer
Brian Warner
<warner@lothar.com>
Sat, 18 Aug 2007 06:28:22 +0000
(23:28 -0700)
src/allmydata/client.py
patch
|
blob
|
history
diff --git
a/src/allmydata/client.py
b/src/allmydata/client.py
index 7b5f51828355563eff1537c4344196511143f7c7..e15cae28578b1f9e83461085f1bd30a27b5abcf4 100644
(file)
--- a/
src/allmydata/client.py
+++ b/
src/allmydata/client.py
@@
-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)