This repository has been archived on 2023-01-02. You can view files and clone it, but cannot push or open issues or pull requests.
django-pyvows/django_pyvows/management/commands/run_vows.py
2011-05-06 00:48:39 -03:00

19 lines
447 B
Python

#!/usr/bin/python
# -*- coding: utf-8 -*-
# django-pyvows extensions
# https://github.com/rafaelcaricio/django-pyvows
# Licensed under the MIT license:
# http://www.opensource.org/licenses/mit-license
# Copyright (c) 2011 Rafael Caricio rafael@caricio.com
from django.core.management.base import BaseCommand
class RunVowsCommand(BaseCommand):
help = u'Run all vows for this project.'
def handle(self, *args, **kwargs):
pass