Added call to 'ensure_ready()' on the command object in

'Distribution.find_command_obj()'.
This commit is contained in:
Greg Ward 2000-03-01 14:42:07 +00:00
parent 585df89f60
commit 611850bbb3

View file

@ -506,6 +506,7 @@ class Distribution:
cmd_obj = self.command_obj.get (command)
if not cmd_obj and create:
cmd_obj = self.create_command_obj (command)
cmd_obj.ensure_ready ()
self.command_obj[command] = cmd_obj
return cmd_obj