--- a/mp3togo/__init__.py
+++ b/mp3togo/__init__.py
@@ -21,5 +21,5 @@
# __all__ = ('converter', 'main', 'options', 'setup')
-version = '0.5.10'
+version = '0.5.11'
--- a/mp3togo/conf.py
+++ b/mp3togo/conf.py
@@ -204,6 +204,8 @@ Description:
def _units(self, name, value):
#Calculate raw bytes and set [max|temp|cache]size
try:
+ if value[-1] in ('b', 'B'):
+ value = value[:-1]
if value[-1] in ('m', 'M'):
max = long(value[:-1]) * 1048576L
elif value[-1] in ('g', 'G'):