Hide Forgot
When running "sleep" without an argument, an exception is raised. I realize that this is invalid input, but I wouldn't expect any Python exceptions to be shown in the shell. mhsh> sleep % Missing arguments: 'FLOAT' Traceback (most recent call last): File "/usr/lib/python2.7/site-packages/matahari/shell/interpreter/interpreter.py", line 81, in onecmd return cmd.Cmd.onecmd(self, line) File "/usr/lib64/python2.7/cmd.py", line 219, in onecmd return func(arg) File "/usr/lib/python2.7/site-packages/matahari/shell/interpreter/command.py", line 185, in __call__ message="Missing arguments: '%s'" % miss) InvalidCommandException: Missing arguments: 'FLOAT'
The same goes for "list", "show", "select", "clear"
This is expected behaviour as per the release announcement: "Currently debugging is turned on, which means that all exceptions are printed out in full. This will eventually be disabled, but for now if you see one that you think is incorrect, please report it and include the stack trace." https://fedorahosted.org/pipermail/matahari/2011-December/002270.html However I posted a patch to the ML that makes this a selectable option from the command line instead: https://fedorahosted.org/pipermail/matahari/2012-January/002284.html
Ok, sounds good. Feel free to close this out. Thanks!