summaryrefslogtreecommitdiff
path: root/demoapp/cliffdemo/simple.py
diff options
context:
space:
mode:
Diffstat (limited to 'demoapp/cliffdemo/simple.py')
-rw-r--r--demoapp/cliffdemo/simple.py24
1 files changed, 0 insertions, 24 deletions
diff --git a/demoapp/cliffdemo/simple.py b/demoapp/cliffdemo/simple.py
deleted file mode 100644
index 3800514..0000000
--- a/demoapp/cliffdemo/simple.py
+++ /dev/null
@@ -1,24 +0,0 @@
-import logging
-
-from cliff.command import Command
-
-
-class Simple(Command):
- "A simple command that prints a message."
-
- log = logging.getLogger(__name__)
-
- def take_action(self, parsed_args):
- self.log.info('sending greeting')
- self.log.debug('debugging')
- self.app.stdout.write('hi!\n')
-
-
-class Error(Command):
- "Always raises an error"
-
- log = logging.getLogger(__name__)
-
- def take_action(self, parsed_args):
- self.log.info('causing error')
- raise RuntimeError('this is the expected exception')