bots: Fix converter bot.

The converter bot depended on past.utils.old_div,
which is not supported anymore. Updating the code
to use the // operator, which provides the same
functionality.
This commit is contained in:
derAnfaenger 2017-05-24 03:50:07 +02:00 committed by Tim Abbott
parent adb5f645bc
commit bb70c5beed

View file

@ -2,7 +2,6 @@
from __future__ import absolute_import
from __future__ import division
from past.utils import old_div
import copy
import importlib
@ -121,7 +120,7 @@ def get_bot_converter_response(message, client):
number_res /= ut_to_std[1]
if base_unit == 'bit':
number_res *= 1024 ** (old_div(exponent, float(3)))
number_res *= 1024 ** (exponent // 3)
else:
number_res *= 10 ** exponent
number_res = round_to(number_res, 7)