diff options
author | Matěj Cepl <mcepl@cepl.eu> | 2014-12-21 22:18:48 +0100 |
---|---|---|
committer | Matěj Cepl <mcepl@cepl.eu> | 2014-12-21 22:43:08 +0100 |
commit | 52b3df8247561fa138b273efd18e7f03a54880ef (patch) | |
tree | db629d4d90eded920160dbf2c63b80e483fa8a4b /pygm2n | |
parent | aaba562ae6e30c3b8e18938eea58f0a8df73bd57 (diff) | |
download | pygn-52b3df8247561fa138b273efd18e7f03a54880ef.tar.gz |
switch to argparse in pygn2m
and cleanup in pygn2m, news2mail.py (and some leftovers in pygm2n)
Diffstat (limited to 'pygm2n')
-rwxr-xr-x | pygm2n | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1,4 +1,5 @@ #!/usr/bin/env python +# -*- coding: utf-8 -*- """News to mail gateway script. Copyright 2000 Cosimo Alfarano Author: Cosimo Alfarano @@ -63,8 +64,6 @@ def parse_cmdline(): if not args.newsgroup: raise argparse.ArgumentError('Error: Missing Newsgroups\n') - logging.debug('args = %s', args) - return args |