fix spacing

This commit is contained in:
Benjamin Peterson 2011-05-27 14:17:04 -05:00
parent 74897ba46f
commit 0a5dad9ef1
1 changed files with 2 additions and 2 deletions

View File

@ -1997,7 +1997,7 @@ compiler_try_except(struct compiler *c, stmt_ty s)
cleanup_end = compiler_new_block(c);
cleanup_body = compiler_new_block(c);
if(!(cleanup_end || cleanup_body))
if (!(cleanup_end || cleanup_body))
return 0;
compiler_nameop(c, handler->v.ExceptHandler.name, Store);
@ -2046,7 +2046,7 @@ compiler_try_except(struct compiler *c, stmt_ty s)
basicblock *cleanup_body;
cleanup_body = compiler_new_block(c);
if(!cleanup_body)
if (!cleanup_body)
return 0;
ADDOP(c, POP_TOP);