diff options
author | 2014-03-25 21:51:58 +0100 | |
---|---|---|
committer | 2014-03-25 21:51:58 +0100 | |
commit | 099ab4d660263b9af7052076a4da1107ba6b08e1 (patch) | |
tree | 7e03e94c64f9547b63679ff0a9378d8ddaccb73e /roverlay/overlay | |
parent | add bash completion for roverlay-query-config (diff) | |
download | R_overlay-099ab4d660263b9af7052076a4da1107ba6b08e1.tar.gz R_overlay-099ab4d660263b9af7052076a4da1107ba6b08e1.tar.bz2 R_overlay-099ab4d660263b9af7052076a4da1107ba6b08e1.zip |
fixme note
Diffstat (limited to 'roverlay/overlay')
-rw-r--r-- | roverlay/overlay/pkgdir/distroot/distroot.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/roverlay/overlay/pkgdir/distroot/distroot.py b/roverlay/overlay/pkgdir/distroot/distroot.py index 6762a38..654c1f6 100644 --- a/roverlay/overlay/pkgdir/distroot/distroot.py +++ b/roverlay/overlay/pkgdir/distroot/distroot.py @@ -142,6 +142,9 @@ class DistrootBase ( object ): # safe removal os.unlink ( dest ) elif os.path.exists ( dest ): + # FIXME 2014: exists(<file>) implies lexists(<file>), + # so this block is unreachable -- remove it + # # unsafe removal (happens when switching from e.g. hardlinks) # FIXME log this os.unlink ( dest ) |