Skip to content

Commit

Permalink
Update util.py
Browse files Browse the repository at this point in the history
  • Loading branch information
nhumrich committed May 5, 2015
1 parent 89c0dbe commit bc0ae6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pathspec/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def iter_tree(root):
abspath = os.path.abspath(parent)
if real != abspath and real in abspath:
# if real is a parent of current parent
raise util.RecursionError(real_path=real, first_path=memo[real], second_path=parent)
raise RecursionError(real_path=real, first_path=memo[real], second_path=parent)
else:
# not recursion, just a sideways link
continue
Expand Down

0 comments on commit bc0ae6e

Please sign in to comment.