diff options
author | Robert Buchholz <rbu@goodpoint.de> | 2009-08-05 14:39:50 +0200 |
---|---|---|
committer | Robert Buchholz <rbu@goodpoint.de> | 2009-08-05 14:39:50 +0200 |
commit | a40b88c0ce761854af881a8663fcc150008c50fb (patch) | |
tree | 23570b3d2c0e44f4fb9e33fb3ce5b46c046902e5 | |
parent | Fix one bug (diff) | |
download | kernel-check-a40b88c0ce761854af881a8663fcc150008c50fb.tar.gz kernel-check-a40b88c0ce761854af881a8663fcc150008c50fb.tar.bz2 kernel-check-a40b88c0ce761854af881a8663fcc150008c50fb.zip |
Print error messages on unimplemented functionality
-rwxr-xr-x | kernel-check.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/kernel-check.py b/kernel-check.py index 2ecd993..dc1fe37 100755 --- a/kernel-check.py +++ b/kernel-check.py @@ -31,11 +31,13 @@ def main(argv): elif opt in ('-n', '--nocolor'): portage.output.nocolor() elif opt in ('-r', '--report'): - return #TODO report(arg) - elif opt in ('-s', '--show'): + error('--report not yet implemented') return + elif opt in ('-s', '--show'): + error('--show not yet implemented') #TODO show_bugid(arg) + return elif opt in ('-v', '--verbose'): lib.VERBOSE = True |