this is not a bug... just fixing a bad bug fix

this is not a bug... just fixing a bad bug fix.
there is no off by 1 error after all.
This commit is contained in:
nichogenius
2017-07-28 06:33:07 -06:00
committed by GitHub
parent 9824951ad5
commit a18dabce83

View File

@@ -59,7 +59,7 @@ def trimR(input, offset):
if (offset == 0):
return input
right_cut = offset_2_chars(offset)
return input[:-right_cut-1]
return input[:-right_cut]
def encode(input):
e1 = b64encode(input)