From f114d9add0610c025110681c09a2f2eb4acedfa5 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Fri, 1 Jan 2010 16:48:03 -0500 Subject: Fixed commit handling in commands.serve and storage.http --- libbe/command/serve.py | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'libbe/command') diff --git a/libbe/command/serve.py b/libbe/command/serve.py index 555a7ab..e98787f 100644 --- a/libbe/command/serve.py +++ b/libbe/command/serve.py @@ -214,15 +214,19 @@ class BERequestHandler (server.BaseHTTPRequestHandler): self.send_error(406, 'Missing query key summary') return (None,None) summary = data['summary'] - if not body in data or data['body'] == 'None': + if not 'body' in data or data['body'] == 'None': data['body'] = None body = data['body'] - if not allow_empty in data \ + if not 'allow_empty' in data \ or data['allow_empty'] == 'True': allow_empty = True else: allow_empty = False - self.s.commit(summary, body, allow_empty) + try: + self.s.commit(summary, body, allow_empty) + except libbe.storage.EmptyCommit, e: + self.send_error(HTTP_USER_ERROR, 'EmptyCommit') + return (None,None) self.send_response(200) return (None,None) -- cgit