~ubuntu-branches/ubuntu/natty/duplicity/natty-updates

« back to all changes in this revision

Viewing changes to debian/patches/01modules

  • Committer: Bazaar Package Importer
  • Author(s): Steinar H. Gunderson
  • Date: 2006-11-11 13:32:07 UTC
  • mfrom: (2.1.3 feisty)
  • Revision ID: james.westby@ubuntu.com-20061111133207-9gizpeda242fwmtr
Tags: 0.4.2-10.1
Switch back to python 2.4, as python-central can apparently no longer cope
with 2.3, and 2.4 seems to work ok now; patch from Joey Hess.
(Closes: #396158)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /bin/sh /usr/share/dpatch/dpatch-run
 
2
## modules patch patch by Martin Wuertele <maxx@debian.org>
 
3
##
 
4
## All lines beginning with `## DP:' are a description of the patch.
 
5
## DP: Fix private modules import path
 
6
 
 
7
@DPATCH@
 
8
--- orig/duplicity      2006-08-27 00:33:30.300199795 +0200
 
9
+++ /tmp/mod/duplicity  2006-08-27 00:35:01.268120334 +0200
 
10
@@ -25,8 +25,8 @@
 
11
 # any suggestions.
 
12
 
 
13
 from __future__ import generators
 
14
-import getpass, gzip, os, sys, time, types
 
15
-from duplicity import collections, commandline, diffdir, dup_temp, \
 
16
+import getpass, gzip, os, sys, time, types, \
 
17
+        collections, commandline, diffdir, dup_temp, \
 
18
         dup_time, file_naming, globals, gpg, log, manifest, patchdir, \
 
19
         path, robust
 
20