utils: Fix documentation. 3+3=6 digits equals 3 bytes, not 6

Change-Id: I2722d788a69976e1c64a9caf6cf3049af27f9a30
This commit is contained in:
Alexander Chemeris
2017-07-18 16:49:59 +03:00
parent a5f0ea6979
commit dddbf525da

View File

@@ -77,7 +77,7 @@ def enc_iccid(iccid):
return swap_nibbles(rpad(iccid, 20))
def enc_plmn(mcc, mnc):
"""Converts integer MCC/MNC into 6 bytes for EF"""
"""Converts integer MCC/MNC into 3 bytes for EF"""
return swap_nibbles(lpad('%d' % mcc, 3) + lpad('%d' % mnc, 3))
def dec_spn(ef):