From 510c9f33393c1f222ee56732c026f229ed8ae49d Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Sun, 23 Nov 2008 09:50:56 -0500 Subject: Go back to lazy bug loading to get execution speed back up. Fixes bug b3c6da51-3a30-42c9-8c75-587c7a1705c5 --- becommands/target.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'becommands/target.py') diff --git a/becommands/target.py b/becommands/target.py index 2047397..3ca7710 100644 --- a/becommands/target.py +++ b/becommands/target.py @@ -37,7 +37,7 @@ def execute(args): if len(args) == 0: print help() return - bd = bugdir.BugDir(loadNow=True) + bd = bugdir.BugDir(from_disk=True) bug = bd.bug_from_shortname(args[0]) if len(args) == 1: if bug.target is None: -- cgit