From: W. Trevor King Date: Sun, 5 Sep 2010 22:23:02 +0000 (-0400) Subject: Remove useless children[i] from libbe.storage.vcs.base.VCS._children(). X-Git-Tag: 1.0.0~14 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=b8ad90ec382ec05af6473be7de4f88aed6f641ae;p=be.git Remove useless children[i] from libbe.storage.vcs.base.VCS._children(). --- diff --git a/libbe/storage/vcs/base.py b/libbe/storage/vcs/base.py index 48bd034..b545a4e 100644 --- a/libbe/storage/vcs/base.py +++ b/libbe/storage/vcs/base.py @@ -744,7 +744,6 @@ class VCS (libbe.storage.base.VersionedStorage): children[i] = None else: children[i] = self._u_path_to_id(cpath) - children[i] return [c for c in children if c != None] def _get(self, id, default=libbe.util.InvalidObject, revision=None):