freebsd-ports/french/eficas/files/patch-Editeur_bureau.py

12 lines
488 B
Python
Raw Normal View History

2006-01-16 00:16:11 +01:00
--- Editeur/bureau.py.orig Tue Jan 3 18:02:45 2006
+++ Editeur/bureau.py Mon Jan 9 22:26:41 2006
@@ -638,7 +638,7 @@
2005-04-27 23:23:09 +02:00
if os.name == 'nt':
os.spawnv(os.P_NOWAIT,commande,(commande,fichier,))
elif os.name == 'posix':
- script ="#!/usr/bin/sh \n%s %s&" %(commande,fichier)
+ script ="#! /bin/sh \n%s %s&" %(commande,fichier)
pid = os.system(script)
except AttributeError:
traceback.print_exc()