Skip to content

Commit

Permalink
> out.write!
Browse files Browse the repository at this point in the history
  • Loading branch information
jgrigera committed Nov 24, 2010
1 parent cbca2e9 commit 39ea618
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ def listTransactions(self):
""" Temp function to return CSV of all transactions
"""
out = StringIO()
'\n'.join( [str(i) for i in self.transactions.values()] )
out.write('\n'.join( [str(i) for i in self.transactions.values()] ))
return out.getvalue()

def addTransaction(self, context=None, items=None, userid=None):
Expand Down

0 comments on commit 39ea618

Please sign in to comment.