view lib/standardservice/tasks.py @ 1654:d47832373b34

__nonzero__ is called __bool__ in py3! thanks for nothing, linters
author drewp@bigasterisk.com
date Sun, 19 Sep 2021 13:21:15 -0700
parents 77181261f8ce
children
line wrap: on
line source

from invoke import task

import sys
sys.path.append('/my/proj/release')
from release import local_release

@task
def release(ctx):
    local_release(ctx)