patches/time-slider-01-python26.diff
author yippi
Mon, 27 Sep 2010 21:07:51 +0000
changeset 20108 51df67ca9307
parent 18110 93461edb1490
permissions -rw-r--r--
I had these modules listed as being owned by me, but they are really owned by wangke, correcting.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
18110
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
     1
diff -ru time-slider-0.2.10/Makefile time-slider-0.2.10-new/Makefile
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
     2
--- time-slider-0.2.10/Makefile	2009-07-09 10:33:37.000000000 +1000
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
     3
+++ time-slider-0.2.10-new/Makefile	2009-12-09 13:25:32.907961168 +1100
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
     4
@@ -8,9 +8,9 @@
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
     5
 RM = /usr/bin/rm -f
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
     6
 RMRF = /usr/bin/rm -Rf
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
     7
 RMDIR = /usr/bin/rmdir
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
     8
-# Use python 2.4 if PYTHON environent is not set
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
     9
+# Use python 2.6 if PYTHON environent is not set
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    10
 ifeq ($(strip $(PYTHON)),)
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    11
-PYTHON = /usr/bin/python2.4
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    12
+PYTHON = /usr/bin/python2.6
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    13
 endif
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    14
 
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    15
 SUBDIRS = po data
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    16
diff -ru time-slider-0.2.10/usr/bin/time-slider-setup time-slider-0.2.10-new/usr/bin/time-slider-setup
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    17
--- time-slider-0.2.10/usr/bin/time-slider-setup	2009-07-09 10:33:37.000000000 +1000
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    18
+++ time-slider-0.2.10-new/usr/bin/time-slider-setup	2009-12-09 13:31:15.989769030 +1100
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    19
@@ -1,4 +1,4 @@
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    20
-#!/usr/bin/env python
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    21
+#!/usr/bin/python2.6 -Wignore::DeprecationWarning
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    22
 
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    23
 import sys
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    24
 from os.path import dirname, join, pardir, abspath
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    25
diff -ru time-slider-0.2.10/usr/lib/time-slider-cleanup time-slider-0.2.10-new/usr/lib/time-slider-cleanup
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    26
--- time-slider-0.2.10/usr/lib/time-slider-cleanup	2009-07-09 10:33:37.000000000 +1000
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    27
+++ time-slider-0.2.10-new/usr/lib/time-slider-cleanup	2009-12-09 13:31:30.101792142 +1100
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    28
@@ -1,4 +1,4 @@
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    29
-#!/usr/bin/env python
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    30
+#!/usr/bin/python2.6 -Wignore::DeprecationWarning
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    31
 import sys
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    32
 from os.path import dirname, join, pardir, abspath
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    33
 sys.path.insert(0, join(dirname(__file__), pardir, 'share',
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    34
diff -ru time-slider-0.2.10/usr/lib/time-slider-delete time-slider-0.2.10-new/usr/lib/time-slider-delete
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    35
--- time-slider-0.2.10/usr/lib/time-slider-delete	2009-07-09 10:33:37.000000000 +1000
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    36
+++ time-slider-0.2.10-new/usr/lib/time-slider-delete	2009-12-09 13:31:40.501785411 +1100
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    37
@@ -1,4 +1,4 @@
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    38
-#!/usr/bin/env python
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    39
+#!/usr/bin/python2.6 -Wignore::DeprecationWarning
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    40
 
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    41
 import sys
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    42
 from os.path import dirname, join, pardir, abspath
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    43
diff -ru time-slider-0.2.10/usr/lib/time-slider-notify time-slider-0.2.10-new/usr/lib/time-slider-notify
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    44
--- time-slider-0.2.10/usr/lib/time-slider-notify	2009-07-09 10:33:37.000000000 +1000
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    45
+++ time-slider-0.2.10-new/usr/lib/time-slider-notify	2009-12-09 13:31:52.981512557 +1100
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    46
@@ -1,4 +1,4 @@
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    47
-#!/usr/bin/env python
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    48
+#!/usr/bin/python2.6 -Wignore::DeprecationWarning
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    49
 import sys
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    50
 from os.path import dirname, join, pardir, abspath
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    51
 sys.path.insert(0, join(dirname(__file__), pardir, 'share',
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    52
diff -ru time-slider-0.2.10/usr/lib/time-slider-snapshot time-slider-0.2.10-new/usr/lib/time-slider-snapshot
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    53
--- time-slider-0.2.10/usr/lib/time-slider-snapshot	2009-07-09 10:33:37.000000000 +1000
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    54
+++ time-slider-0.2.10-new/usr/lib/time-slider-snapshot	2009-12-09 13:32:03.341925438 +1100
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    55
@@ -1,4 +1,4 @@
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    56
-#!/usr/bin/env python
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    57
+#!/usr/bin/python2.6 -Wignore::DeprecationWarning
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    58
 
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    59
 import sys
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    60
 from os.path import dirname, join, pardir, abspath
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    61
diff -ru time-slider-0.2.10/usr/lib/time-slider-version time-slider-0.2.10-new/usr/lib/time-slider-version
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    62
--- time-slider-0.2.10/usr/lib/time-slider-version	2009-07-09 10:33:37.000000000 +1000
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    63
+++ time-slider-0.2.10-new/usr/lib/time-slider-version	2009-12-09 13:32:14.454253497 +1100
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    64
@@ -1,4 +1,4 @@
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    65
-#!/usr/bin/env python
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    66
+#!/usr/bin/python2.6 -Wignore::DeprecationWarning
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    67
 
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    68
 import sys
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    69
 from os.path import dirname, join, pardir, abspath
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    70
diff -ru time-slider-0.2.10/usr/share/time-slider/lib/time_slider/cleanupmanager.py time-slider-0.2.10-new/usr/share/time-slider/lib/time_slider/cleanupmanager.py
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    71
--- time-slider-0.2.10/usr/share/time-slider/lib/time_slider/cleanupmanager.py	2009-07-09 10:33:37.000000000 +1000
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    72
+++ time-slider-0.2.10-new/usr/share/time-slider/lib/time_slider/cleanupmanager.py	2009-12-09 13:27:15.388459392 +1100
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    73
@@ -1,4 +1,4 @@
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    74
-#!/usr/bin/env python
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    75
+#!/usr/bin/python2.6
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    76
 #
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    77
 # CDDL HEADER START
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    78
 #
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    79
diff -ru time-slider-0.2.10/usr/share/time-slider/lib/time_slider/deletegui.py time-slider-0.2.10-new/usr/share/time-slider/lib/time_slider/deletegui.py
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    80
--- time-slider-0.2.10/usr/share/time-slider/lib/time_slider/deletegui.py	2009-07-09 10:33:37.000000000 +1000
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    81
+++ time-slider-0.2.10-new/usr/share/time-slider/lib/time_slider/deletegui.py	2009-12-09 13:27:42.164531361 +1100
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    82
@@ -1,4 +1,4 @@
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    83
-#!/usr/bin/env python
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    84
+#!/usr/bin/python2.6
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    85
 #
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    86
 # CDDL HEADER START
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    87
 #
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    88
diff -ru time-slider-0.2.10/usr/share/time-slider/lib/time_slider/fileversion.py time-slider-0.2.10-new/usr/share/time-slider/lib/time_slider/fileversion.py
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    89
--- time-slider-0.2.10/usr/share/time-slider/lib/time_slider/fileversion.py	2009-07-09 10:33:37.000000000 +1000
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    90
+++ time-slider-0.2.10-new/usr/share/time-slider/lib/time_slider/fileversion.py	2009-12-09 13:27:52.076952783 +1100
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    91
@@ -1,4 +1,4 @@
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    92
-#!/usr/bin/env python
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    93
+#!/usr/bin/python2.6
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    94
 #
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    95
 # CDDL HEADER START
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    96
 #
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    97
diff -ru time-slider-0.2.10/usr/share/time-slider/lib/time_slider/notification.py time-slider-0.2.10-new/usr/share/time-slider/lib/time_slider/notification.py
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    98
--- time-slider-0.2.10/usr/share/time-slider/lib/time_slider/notification.py	2009-07-09 10:33:37.000000000 +1000
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
    99
+++ time-slider-0.2.10-new/usr/share/time-slider/lib/time_slider/notification.py	2009-12-09 13:28:06.604638050 +1100
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
   100
@@ -1,4 +1,4 @@
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
   101
-#!/usr/bin/env python
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
   102
+#!/usr/bin/python2.6
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
   103
 #
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
   104
 # CDDL HEADER START
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
   105
 #
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
   106
diff -ru time-slider-0.2.10/usr/share/time-slider/lib/time_slider/rbac.py time-slider-0.2.10-new/usr/share/time-slider/lib/time_slider/rbac.py
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
   107
--- time-slider-0.2.10/usr/share/time-slider/lib/time_slider/rbac.py	2009-07-09 10:33:37.000000000 +1000
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
   108
+++ time-slider-0.2.10-new/usr/share/time-slider/lib/time_slider/rbac.py	2009-12-09 13:29:27.204834616 +1100
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
   109
@@ -1,4 +1,4 @@
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
   110
-#!/usr/bin/env python
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
   111
+#!/usr/bin/python2.6
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
   112
 #
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
   113
 # CDDL HEADER START
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
   114
 #
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
   115
diff -ru time-slider-0.2.10/usr/share/time-slider/lib/time_slider/setupgui.py time-slider-0.2.10-new/usr/share/time-slider/lib/time_slider/setupgui.py
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
   116
--- time-slider-0.2.10/usr/share/time-slider/lib/time_slider/setupgui.py	2009-07-09 10:33:37.000000000 +1000
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
   117
+++ time-slider-0.2.10-new/usr/share/time-slider/lib/time_slider/setupgui.py	2009-12-09 13:29:38.757130038 +1100
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
   118
@@ -1,4 +1,4 @@
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
   119
-#!/usr/bin/env python
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
   120
+#!/usr/bin/python2.6
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
   121
 #
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
   122
 # CDDL HEADER START
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
   123
 #
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
   124
diff -ru time-slider-0.2.10/usr/share/time-slider/lib/time_slider/smfmanager.py time-slider-0.2.10-new/usr/share/time-slider/lib/time_slider/smfmanager.py
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
   125
--- time-slider-0.2.10/usr/share/time-slider/lib/time_slider/smfmanager.py	2009-07-09 10:33:37.000000000 +1000
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
   126
+++ time-slider-0.2.10-new/usr/share/time-slider/lib/time_slider/smfmanager.py	2009-12-09 13:29:55.717277870 +1100
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
   127
@@ -1,4 +1,4 @@
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
   128
-#!/usr/bin/env python
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
   129
+#!/usr/bin/python2.6
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
   130
 #
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
   131
 # CDDL HEADER START
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
   132
 #
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
   133
diff -ru time-slider-0.2.10/usr/share/time-slider/lib/time_slider/snapnowui.py time-slider-0.2.10-new/usr/share/time-slider/lib/time_slider/snapnowui.py
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
   134
--- time-slider-0.2.10/usr/share/time-slider/lib/time_slider/snapnowui.py	2009-07-09 10:33:37.000000000 +1000
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
   135
+++ time-slider-0.2.10-new/usr/share/time-slider/lib/time_slider/snapnowui.py	2009-12-09 13:30:13.565061959 +1100
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
   136
@@ -1,4 +1,4 @@
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
   137
-#!/usr/bin/env python
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
   138
+#!/usr/bin/python2.6
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
   139
 #
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
   140
 # CDDL HEADER START
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
   141
 #
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
   142
diff -ru time-slider-0.2.10/usr/share/time-slider/lib/time_slider/zfs.py time-slider-0.2.10-new/usr/share/time-slider/lib/time_slider/zfs.py
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
   143
--- time-slider-0.2.10/usr/share/time-slider/lib/time_slider/zfs.py	2009-07-09 10:33:37.000000000 +1000
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
   144
+++ time-slider-0.2.10-new/usr/share/time-slider/lib/time_slider/zfs.py	2009-12-09 13:30:24.052927153 +1100
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
   145
@@ -1,4 +1,4 @@
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
   146
-#!/usr/bin/env python
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
   147
+#!/usr/bin/python2.6
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
   148
 #
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
   149
 # CDDL HEADER START
93461edb1490 2010-06-10 Christian Kelly <[email protected]>
chrisk
parents:
diff changeset
   150
 #