Revision: 5260 http://geany.svn.sourceforge.net/geany/?rev=5260&view=rev Author: eht16 Date: 2010-09-26 18:09:13 +0000 (Sun, 26 Sep 2010)
Log Message: ----------- Simplify Python Compile/Syntax Check command.
Modified Paths: -------------- trunk/ChangeLog trunk/data/filetypes.python
Modified: trunk/ChangeLog =================================================================== --- trunk/ChangeLog 2010-09-26 18:02:36 UTC (rev 5259) +++ trunk/ChangeLog 2010-09-26 18:09:13 UTC (rev 5260) @@ -3,6 +3,8 @@ * src/editor.c: When commenting/uncommenting with single-line comment characters, ignore any end of line characters before evaluating the current line. + * data/filetypes.python: + Simplify Python Compile/Syntax Check command.
2010-09-23 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
Modified: trunk/data/filetypes.python =================================================================== --- trunk/data/filetypes.python 2010-09-26 18:02:36 UTC (rev 5259) +++ trunk/data/filetypes.python 2010-09-26 18:09:13 UTC (rev 5260) @@ -55,5 +55,5 @@ # %f will be replaced by the complete filename # %e will be replaced by the filename without extension # (use only one of it at one time) -compiler=python -c "import py_compile; py_compile.compile('%f')" +compiler=python -m py_compile "%f" run_cmd=python "%f"
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.