Minor bufix.

This commit is contained in:
cedricbonhomme 2010-10-06 11:36:01 +02:00
parent b3cb1d5f69
commit 455ec6e775

View file

@ -80,7 +80,7 @@ def n_at_a_time(items, n, fillvalue):
it = iter(items)
return its.izip_longest(*[it] * n, fillvalue=fillvalue)
def binary2base64(binary_file, output_file):
def binary2base64(binary_file):
"""
Convert a binary file (OGG, executable, etc.) to a
printable string.