From 1c695133c3d4248d24074ce016065c9d8922dbb4 Mon Sep 17 00:00:00 2001 From: j <0x006A@0x2620.org> Date: Mon, 17 May 2010 11:12:42 +0200 Subject: [PATCH] ignore - --- oxlib/format.py | 1 + 1 file changed, 1 insertion(+) diff --git a/oxlib/format.py b/oxlib/format.py index a8cb1d5..ed27b62 100644 --- a/oxlib/format.py +++ b/oxlib/format.py @@ -77,6 +77,7 @@ def from32(q): 'L': 1, } base32 = '0123456789ABCDEFGHIJKLMNOPQRSTUV' + q = q.replace('-','') q = ''.join([base32[_32map[i.upper()]] for i in q]) return int(q, 32)