# HG changeset patch # User Goffi # Date 1457633622 -3600 # Node ID 58f25b2745363efaa45dcf7824701e06ae009dcd # Parent e0bfdd379e8d7ff4f32471092c6cd728eb40e1f3 jp (blog/edit): removed meta_file_path non existence check, as it is now re-used if it exists diff -r e0bfdd379e8d -r 58f25b274536 frontends/src/jp/cmd_blog.py --- a/frontends/src/jp/cmd_blog.py Thu Mar 10 18:05:37 2016 +0100 +++ b/frontends/src/jp/cmd_blog.py Thu Mar 10 19:13:42 2016 +0100 @@ -193,8 +193,6 @@ # then we create the file and write metadata there, as JSON dict # XXX: if we port jp one day on Windows, O_BINARY may need to be added here - if os.path.exists(meta_file_path): - self.disp(u"metadata file {} already exists, this should not happen! Cancelling...", error=True) with os.fdopen(os.open(meta_file_path, os.O_RDWR | os.O_CREAT ,0o600), 'w+b') as f: # we need to use an intermediate unicode buffer to write to the file unicode without escaping characters unicode_dump = json.dumps(mb_data, ensure_ascii=False, indent=4, separators=(',', ': '), sort_keys=True)