From 455ec6e775fbf881a5807484da9e9dbd2021590a Mon Sep 17 00:00:00 2001 From: cedricbonhomme Date: Wed, 6 Oct 2010 11:36:01 +0200 Subject: [PATCH] Minor bufix. --- tools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools.py b/tools.py index d68914e..388898d 100755 --- a/tools.py +++ b/tools.py @@ -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.