Verify fails when comparing symlink pointing to directory
Bug #1600692 reported by
Wolfgang Rohdewald
This bug affects 1 person
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
Duplicity |
Fix Released
|
Medium
|
Unassigned | ||
duplicity (Ubuntu) |
Triaged
|
Medium
|
Unassigned |
Bug Description
duplicity 0.7.08 on Python 2.7.11, Ubuntu 16.04 outputs
Difference found: Symlink home/vorjahr/wwc points to /usr/wwc/, expected /usr/wwc
Quick and dirty fix:
~/tmp/duplicity
--- path.py.org 2016-07-11 08:46:47.237287544 +0200
+++ path.py 2016-07-11 08:47:49.094014163 +0200
@@ -395,7 +395,7 @@
else:
elif self.issym():
- if self.symtext == other.symtext:
+ if self.symtext == other.symtext or self.symtext + "/" == other.symtext:
else:
Changed in duplicity: | |
importance: | Undecided → Medium |
milestone: | none → 0.7.09 |
status: | New → Fix Committed |
Changed in duplicity: | |
status: | Fix Committed → Fix Released |
Changed in duplicity (Ubuntu): | |
status: | New → Triaged |
importance: | Undecided → Medium |
To post a comment you must log in.