Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions massmail
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def parse_command_line_options(arguments):
Arguments are checked for validity.
"""
try:
opts, args = getopt.getopt(arguments, "hfs:F:S:B:C:R:e:u:p:P:z:")
opts, args = getopt.getopt(arguments, "hfs:F:S:B:C:R:u:p:P:z:")
except getopt.GetoptError as err:
error(str(err)+USAGE)

Expand All @@ -146,8 +146,6 @@ def parse_command_line_options(arguments):
}

for option, value in opts:
if option == "-e":
options['encoding'] = value
if option == "-s":
options['sep'] = value
elif option == "-F":
Expand Down