2 Commits

Author SHA1 Message Date
3846e8f303 bump version 2020-12-17 12:17:00 +01:00
07ccb09910 make sure name is not a list... 2020-12-17 12:15:20 +01:00
2 changed files with 2 additions and 2 deletions

View File

@ -79,7 +79,7 @@ def parse_args():
args = parser.parse_args() args = parser.parse_args()
if not args.name: if not args.name:
args.name = [os.path.basename(args.command[0])] args.name = os.path.basename(args.command[0])
return args return args

View File

@ -5,7 +5,7 @@ with open('README.md', 'r') as fh:
setuptools.setup( setuptools.setup(
name='cronwrapper', name='cronwrapper',
version='0.1.1', version='0.1.2',
author='Fredrik Eriksson', author='Fredrik Eriksson',
author_email='feffe@fulh.ax', author_email='feffe@fulh.ax',
description='A small wrapper to handle cronjob failures', description='A small wrapper to handle cronjob failures',