diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-04-26 11:20:34 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-04-26 11:29:10 +0200 |
commit | fd0ecb1897cfe0e5083cd1525f3600bcd8c516fc (patch) | |
tree | f8aeca2373c05409373d0c0590fab36e1f731c3d /unotest/source | |
parent | e8807620d2bcc6bd8bc9b08d00e5836031936e56 (diff) |
Make informative output more obvious
Change-Id: I9088da9fd2eb1b3ea6be6fda85e058abe8d57286
Diffstat (limited to 'unotest/source')
-rw-r--r-- | unotest/source/python/org/libreoffice/unotest.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/unotest/source/python/org/libreoffice/unotest.py b/unotest/source/python/org/libreoffice/unotest.py index a135baa9acb5..586248466931 100644 --- a/unotest/source/python/org/libreoffice/unotest.py +++ b/unotest/source/python/org/libreoffice/unotest.py @@ -18,15 +18,17 @@ try: import uno except ImportError: print("pyuno not found: try to set PYTHONPATH and URE_BOOTSTRAP variables") - print("PYTHONPATH=/installation/opt/program") - print("URE_BOOTSTRAP=file:///installation/opt/program/fundamentalrc") + print("to something like:") + print(" PYTHONPATH=/installation/opt/program") + print(" URE_BOOTSTRAP=file:///installation/opt/program/fundamentalrc") raise try: from com.sun.star.document import XDocumentEventListener except ImportError: print("UNO API class not found: try to set URE_BOOTSTRAP variable") - print("URE_BOOTSTRAP=file:///installation/opt/program/fundamentalrc") + print("to something like:") + print(" URE_BOOTSTRAP=file:///installation/opt/program/fundamentalrc") raise ### utilities ### |