diff --git a/app/cli.py b/app/cli.py index 50e017c9..ec2186fd 100644 --- a/app/cli.py +++ b/app/cli.py @@ -17,7 +17,7 @@ def register(app): pass @daemon.command() - def run(): + def run_daemon(): """Run daemon""" from app.daemon import Daemon daemon = Daemon() @@ -29,7 +29,7 @@ def register(app): pass @test.command() - def run(): + def run_test(): """Run unit tests.""" import unittest tests = unittest.TestLoader().discover('tests')