Rename files accordingly

The jobs.py module didn't really make sense named the way it was since
the jobs are to be handled by Jenkins. This change renames files
accordingly.

Change-Id: Iaf54202dd0369e41686d134b4b723d4bccef8e54
This commit is contained in:
Lance Bragstad 2014-10-04 03:29:36 +00:00
parent c75a66c78c
commit d95624ed79
3 changed files with 3 additions and 3 deletions

View File

@ -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__':

View File

@ -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