Revision: 3943
Author: janne.t.harkonen
Date: Thu Aug 26 06:28:35 2010
Log: Oops
http://code.google.com/p/robotframework/source/detail?r=3943
Modified:
/trunk/src/robot/__init__.py
/trunk/src/robot/jarrunner.py
=======================================
--- /trunk/src/robot/__init__.py Thu Aug 26 05:53:39 2010
+++ /trunk/src/robot/__init__.py Thu Aug 26 06:28:35 2010
@@ -39,7 +39,6 @@
_run_or_rebot_from_cli(run, args, usage, pythonpath='pythonpath')
def rebot_from_cli(args, usage):
- print args
LOGGER.info(get_full_version('Rebot'))
_run_or_rebot_from_cli(run_rebot, args, usage)
=======================================
--- /trunk/src/robot/jarrunner.py Thu Aug 26 05:53:31 2010
+++ /trunk/src/robot/jarrunner.py Thu Aug 26 06:28:35 2010
@@ -20,10 +20,8 @@
"""Used for Java-Jython interop when RF is executed from .jar file"""
def run(self, args):
- print rebot, rebot.__file__
try:
if args and args[0] == 'rebot':
- print rebot.__doc__
rebot_from_cli(args[1:], rebot.__doc__)
else:
run_from_cli(args, runner.__doc__)