From c294dc43176f384a7a7c2a3be25eebefb3698315 Mon Sep 17 00:00:00 2001 From: keis Date: Fri, 17 Dec 2010 23:40:59 +0100 Subject: should open file with a+ when writing cookies --- examples/data/plugins/cookies.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples') diff --git a/examples/data/plugins/cookies.py b/examples/data/plugins/cookies.py index 0264471..a4ae530 100644 --- a/examples/data/plugins/cookies.py +++ b/examples/data/plugins/cookies.py @@ -66,7 +66,7 @@ class TextStore(object): self.delete_cookie(None, cookie[:-3]) first = not os.path.exists(self.filename) - with open(self.filename, 'a') as f: + with open(self.filename, 'a+') as f: if first: print >> f, "# HTTP Cookie File" print >> f, '\t'.join(self.as_file(cookie)) -- cgit v1.2.3