This commit is contained in:
2019-02-20 13:28:20 -05:00
parent e6ff3fed1d
commit 12297a321f
2 changed files with 2 additions and 2 deletions

View File

@@ -6,7 +6,7 @@ with open('README.md') as file:
setup(
name="tatt",
version="0.956",
version="0.957",
py_modules=['tatt'],
url='https://github.com/zevaverbach/tatt',
install_requires=[

View File

@@ -74,7 +74,7 @@ def status(job_name):
jobs = helpers.get_transcription_jobs(name=job_name)
if not jobs:
raise click.ClickException('no job by that name')
click.echo(jobs[0]['status'])
click.echo(list(jobs.values())[0][0]['status'])
@cli.command()