From 2d8acefd32fcea235e339d7d4d5d2e185a696b12 Mon Sep 17 00:00:00 2001 From: htgoebel Date: Wed, 23 Jul 2008 18:33:07 +0000 Subject: [PATCH] Add mode-line to .spec files git-svn-id: http://svn.pyinstaller.org/trunk@477 8dd32b29-ccff-0310-8a9a-9233e24343b1 --- Makespec.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makespec.py b/Makespec.py index cc44957..c896bcd 100755 --- a/Makespec.py +++ b/Makespec.py @@ -25,7 +25,7 @@ try: except: True,False = 1,0 -freezetmplt = """\ +freezetmplt = """# -*- mode: python -*- a = Analysis(%(scripts)s, pathex=%(pathex)s) pyz = PYZ(a.pure) @@ -40,7 +40,7 @@ exe = EXE(%(tkpkg)s pyz, console=%(console)s %(exe_options)s) """ # pathex scripts exename tkpkg debug console -collecttmplt = """\ +collecttmplt = """# -*- mode: python -*- a = Analysis(%(scripts)s, pathex=%(pathex)s) pyz = PYZ(a.pure) @@ -60,7 +60,7 @@ coll = COLLECT(%(tktree)s exe, name='%(distdir)s') """ # scripts pathex, exename, debug, console tktree distdir -comsrvrtmplt = """\ +comsrvrtmplt = """# -*- mode: python -*- a = Analysis(%(scripts)s, pathex=%(pathex)s) pyz = PYZ(a.pure)