Skip to content
Snippets Groups Projects
Commit 775e35ce authored by Thomas Gubler's avatar Thomas Gubler
Browse files

fix syntax in uorb header generation script

This fixes syntax and indentation of a58d73b5
parent 1c6cc8a7
No related branches found
No related tags found
No related merge requests found
......@@ -44,10 +44,13 @@ import filecmp
import argparse
try:
import genmsg.template_tools
except ImportError, e:
print("Package empy not installed. Please run 'sudo apt-get install python-empy' on a Debian/Ubuntu system, 'sudo pip install empy' on a Mac OS system or 'easy_install empy' on Windows system.")
exit(1)
import genmsg.template_tools
except ImportError as e:
print("Package empy not installed. Please run 'sudo apt-get install"
" python-empy' on a Debian/Ubuntu system, 'sudo pip install"
" empy' on a Mac OS system or 'easy_install empy' on"
" a Windows system.")
exit(1)
__author__ = "Thomas Gubler"
__copyright__ = "Copyright (C) 2013-2014 PX4 Development Team."
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment