diff options
| author | Silvio Rhatto <rhatto@riseup.net> | 2022-02-10 13:46:48 -0300 |
|---|---|---|
| committer | Silvio Rhatto <rhatto@riseup.net> | 2022-02-10 13:46:48 -0300 |
| commit | 0233ab077da87c79d3dbc991afb52a9906a656c3 (patch) | |
| tree | 89a803b423ee206639f5d7c475d8f8ea5bc8d9a6 | |
| parent | 994f9b294a8b834b69bb6af8121c0104103e58c9 (diff) | |
| download | utils-mail-0233ab077da87c79d3dbc991afb52a9906a656c3.tar.gz utils-mail-0233ab077da87c79d3dbc991afb52a9906a656c3.tar.bz2 | |
Fix: minimailer-csv: removed unneeded sys module
| -rwxr-xr-x | minimailer-csv | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/minimailer-csv b/minimailer-csv index 802766d..6bddaf7 100755 --- a/minimailer-csv +++ b/minimailer-csv @@ -21,7 +21,7 @@ # Dependencies import argparse import csv -import sys, os, subprocess +import os, subprocess class MinimailerCSV: """Send emails according to a CSV input with fields and templating support""" |
