diff options
author | W. Trevor King <wking@drexel.edu> | 2009-12-05 23:51:43 -0500 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2009-12-05 23:51:43 -0500 |
commit | b1f88a431427319cc35d44b69472d8c3dbb2ffa4 (patch) | |
tree | f1d83278f9093e57543e73e8d0612d94b35d901c /becommands | |
parent | fadbadc2bf763351ef572c5a584964f42b349f96 (diff) | |
download | bugseverywhere-b1f88a431427319cc35d44b69472d8c3dbb2ffa4.tar.gz |
Docstring clarification in becommands.depend.get_blocked_by()
Diffstat (limited to 'becommands')
-rw-r--r-- | becommands/depend.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/becommands/depend.py b/becommands/depend.py index 1a2b905..6336793 100644 --- a/becommands/depend.py +++ b/becommands/depend.py @@ -258,7 +258,7 @@ def get_blocks(bugdir, bug): def get_blocked_by(bugdir, bug): """ - Return a list of bugs blocking the given bug blocks. + Return a list of bugs blocking the given bug. """ blocked_by = [] for uuid in _get_blocked_by(bug): |