From fa2d7bb797e9f0735f299cd19192ac3782475a96 Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Tue, 11 Mar 2014 00:20:27 +0400 Subject: [PATCH] Rename get_opt to get_opts --- mimedecode.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mimedecode.py b/mimedecode.py index 8971efa..6428171 100755 --- a/mimedecode.py +++ b/mimedecode.py @@ -398,7 +398,7 @@ class GlobalOptions: gopts = GlobalOptions -def get_opt(): +def get_opts(): from getopt import getopt, GetoptError try: @@ -463,7 +463,7 @@ def get_opt(): if __name__ == "__main__": - arguments = get_opt() + arguments = get_opts() la = len(arguments) if la == 0: -- 2.39.2