Skip to content

Commit

Permalink
Merge pull request #10 from epsagon/utf8-fix
Browse files Browse the repository at this point in the history
Removing uft-8 encoding, fixing #9
  • Loading branch information
nshap authored Apr 18, 2018
2 parents 9724043 + 5abf66b commit 142788a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion list_lambdas.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def create_tables(lambdas_data, args):
'%.2f' % (function_data['CodeSize'] / BYTE_TO_MB),
str(function_data['Timeout']),
str(function_data['Runtime']),
function_data['Description'].encode('utf-8'),
function_data['Description'],
get_days_ago(lambda_data['last-modified']),
last_invocation
])
Expand Down

0 comments on commit 142788a

Please sign in to comment.