Commit c1f78505 authored by Sidnei da Silva's avatar Sidnei da Silva

- Of course, it only makes sense to run this test if os.symlink exists.
  Also, add an entry to CHANGES.txt
parent a68f46f7
...@@ -4,6 +4,12 @@ Status ...@@ -4,6 +4,12 @@ Status
Change History Change History
************** **************
1.1.2 (Unreleased)
==================
- Fixed a bug that would cause buildout to break while computing a
directory hash if it found a broken symlink (Launchpad #250573)
1.1.1 (2008-07-28) 1.1.1 (2008-07-28)
================== ==================
......
...@@ -1108,9 +1108,9 @@ changes in .svn or CVS directories. ...@@ -1108,9 +1108,9 @@ changes in .svn or CVS directories.
""" """
def bug_250537_broken_symlink_doesnt_affect_sig(): if hasattr(os, 'symlink'):
""" def bug_250537_broken_symlink_doesnt_affect_sig():
"""
If we have a develop recipe, it's signature shouldn't be affected by If we have a develop recipe, it's signature shouldn't be affected by
broken symlinks, and better yet, computing the hash should not break broken symlinks, and better yet, computing the hash should not break
because of the missing target file. because of the missing target file.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment