]> git.pld-linux.org Git - packages/duplicity.git/commitdiff
- initial
authorZsolt Udvari <uzsolt@pld-linux.org>
Thu, 11 Mar 2010 16:19:40 +0000 (16:19 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
- search *.pyc in backends directory instead of *.py

Changed files:
    duplicity-backend-search.patch -> 1.1

duplicity-backend-search.patch [new file with mode: 0644]

diff --git a/duplicity-backend-search.patch b/duplicity-backend-search.patch
new file mode 100644 (file)
index 0000000..b084e59
--- /dev/null
@@ -0,0 +1,13 @@
+--- duplicity-0.6.08a-orig/src/backend.py      2010-03-11 15:08:30.000000000 +0100
++++ duplicity-0.6.08a/src/backend.py   2010-03-11 17:13:41.195614937 +0100
+@@ -68,8 +68,8 @@
+     files = os.listdir(path)
+     for fn in files:
+-        if fn.endswith("backend.py"):
+-            fn = fn[:-3]
++        if fn.endswith("backend.pyc"):
++            fn = fn[:-4]
+             imp = "duplicity.backends.%s" % (fn,)
+             try:
+                 __import__(imp)
This page took 0.214518 seconds and 4 git commands to generate.