diff options
Diffstat (limited to 'scripts/bluepin')
-rwxr-xr-x | scripts/bluepin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/bluepin b/scripts/bluepin index b17f4a03..66eec987 100755 --- a/scripts/bluepin +++ b/scripts/bluepin @@ -148,7 +148,7 @@ def main(*args): if dialog(title, mesg, pin) == DLG_OK: pin["PIN"] = string.strip(pin["PIN"]) - if len(pin["PIN"]) >= 4 and len(pin["PIN"]) <=16: + if len(pin["PIN"]) >= 1 and len(pin["PIN"]) <= 16: print "PIN:" + pin["PIN"] else: print "ERR" |