]> git.phdru.name Git - m_lib.git/commitdiff
Use int() instead of atoi() for Py3 compatibility
authorOleg Broytman <phd@phdru.name>
Mon, 25 Jul 2016 16:05:26 +0000 (19:05 +0300)
committerOleg Broytman <phd@phdru.name>
Mon, 25 Jul 2016 18:37:05 +0000 (21:37 +0300)
m_lib/tty_menu.py

index 06e756e157c78edf2883976da04629bc3576ccdb..852de1d601929faf2e3a4ec6b9328f9011bd51cb 100755 (executable)
@@ -38,8 +38,8 @@ def vmenu(item_list, prompt, format = "%d. %s"):
    result = raw_input(prompt)
 
    try:
-      result = string.atoi(result)
-   except string.atoi_error:
+      result = int(result)
+   except ValueError:
       result = -1
 
    return result