Skip to content

Commit

Permalink
fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Dean committed Oct 6, 2010
1 parent 03556f6 commit 43f0a18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion beancount.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def __init__( self, input='' ):

def hostname_for_ctid( self, ctid ):
ret_val = ctid
if ctid in self.map
if ctid in self.map:
ret_val = self.map[ ctid ]
return ret_val

Expand Down

0 comments on commit 43f0a18

Please sign in to comment.