]> git.pld-linux.org Git - packages/duplicity.git/blob - duplicity-backend-search.patch
- updated
[packages/duplicity.git] / duplicity-backend-search.patch
1 --- duplicity-0.6.08a-orig/src/backend.py       2010-03-11 15:08:30.000000000 +0100
2 +++ duplicity-0.6.08a/src/backend.py    2010-03-11 17:13:41.195614937 +0100
3 @@ -68,8 +68,8 @@
4  
5      files = os.listdir(path)
6      for fn in files:
7 -        if fn.endswith("backend.py"):
8 -            fn = fn[:-3]
9 +        if fn.endswith("backend.pyc"):
10 +            fn = fn[:-4]
11              imp = "duplicity.backends.%s" % (fn,)
12              try:
13                  __import__(imp)
This page took 0.025557 seconds and 3 git commands to generate.