[pywin32-checkins] pywin32/Pythonwin/pywin/Demos/ocx flash.py, 1.1, 1.2
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2008-10-01 14:12:01
|
Update of /cvsroot/pywin32/pywin32/Pythonwin/pywin/Demos/ocx In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv12161/Pythonwin/pywin/Demos/ocx Modified Files: flash.py Log Message: Move to 'new style' imports. Index: flash.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/Pythonwin/pywin/Demos/ocx/flash.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** flash.py 2 Jul 2003 04:09:25 -0000 1.1 --- flash.py 1 Oct 2008 14:11:49 -0000 1.2 *************** *** 16,20 **** if FlashModule is None: ! raise ImportError, "Flash does not appear to be installed." class MyFlashComponent(activex.Control, FlashModule.ShockwaveFlash): --- 16,20 ---- if FlashModule is None: ! raise ImportError("Flash does not appear to be installed.") class MyFlashComponent(activex.Control, FlashModule.ShockwaveFlash): |