Author: btami Date: 2005-10-13 02:35:37 -0500 (Thu, 13 Oct 2005) New Revision: 8053
Modified: trunk/gnue-designer/src/Designer.py Log: designer requires PyXML from now Modified: trunk/gnue-designer/src/Designer.py =================================================================== --- trunk/gnue-designer/src/Designer.py 2005-10-12 18:02:48 UTC (rev 8052) +++ trunk/gnue-designer/src/Designer.py 2005-10-13 07:35:37 UTC (rev 8053) @@ -41,6 +41,21 @@ import time +try: + import _xmlplus +except ImportError: + print """ + This GNUe tool requires PyXML package to be installed. + Typically this is the case, however some GNU/Linux distro's + like Debian distribute this in another seperate package + + To install this package... + On Debian: apt-get install python-xml + +""" + sys.exit() + + class Designer(GClientApp): # GClientApp stuff... _______________________________________________ Commit-gnue mailing list [email protected] http://lists.gnu.org/mailman/listinfo/commit-gnue
