blob: 51d57caacf0305757b8942a8d3cc2c61a38e72c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
--- old/src/testoob/compatibility/trace.py 2009-10-07 17:08:46.000000000 -0500
+++ new/src/testoob/compatibility/trace.py 2014-03-16 21:53:53.332878659 -0500
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python2
# portions copyright 2001, Autonomous Zones Industries, Inc., all rights...
# err... reserved and offered to the public under the terms of the
@@ -739,10 +739,10 @@
s = s.replace("$prefix",
os.path.join(sys.prefix, "lib",
- "python" + sys.version[:3]))
+ "python2" + sys.version[:3]))
s = s.replace("$exec_prefix",
os.path.join(sys.exec_prefix, "lib",
- "python" + sys.version[:3]))
+ "python2" + sys.version[:3]))
s = os.path.normpath(s)
ignore_dirs.append(s)
continue
|