diff --git a/arbiter/jobs.py b/arbiter/convert.py similarity index 97% rename from arbiter/jobs.py rename to arbiter/convert.py index 1e2fec3..0c27359 100644 --- a/arbiter/jobs.py +++ b/arbiter/convert.py @@ -19,7 +19,7 @@ import argparse import logging import os -from arbiter import util +from arbiter import utils # logging settings @@ -81,7 +81,7 @@ def main(): " running with -f to remove old iCal files.") # Convert yaml to iCal - util.convert_yaml_to_ical(yaml_dir, ical_dir) + utils.convert_yaml_to_ical(yaml_dir, ical_dir) if __name__ == '__main__': diff --git a/arbiter/util.py b/arbiter/utils.py similarity index 100% rename from arbiter/util.py rename to arbiter/utils.py diff --git a/tox.ini b/tox.ini index 01dee04..4938438 100644 --- a/tox.ini +++ b/tox.ini @@ -16,7 +16,7 @@ commands = {posargs} [testenv:mkical] commands = mkdir -p ical - python arbiter/jobs.py -i ./ical -c + python arbiter/convert.py -i ./ical -c [flake8] show-source = True