From: W. Trevor King Date: Wed, 12 May 2010 17:51:17 +0000 (-0400) Subject: Fix hooke.ui.commandline imports following hooke.interaction creation. X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=4805fbf9d500479c57e15a1789f1945c9fc5920c;p=hooke.git Fix hooke.ui.commandline imports following hooke.interaction creation. --- diff --git a/hooke/ui/commandline.py b/hooke/ui/commandline.py index c6520bd..95b4bb4 100644 --- a/hooke/ui/commandline.py +++ b/hooke/ui/commandline.py @@ -7,8 +7,8 @@ import optparse import readline # including readline makes cmd.Cmd.cmdloop() smarter import shlex -from ..command import CommandExit, Exit, Request, BooleanRequest, \ - Command, Argument, StoreValue +from ..command import CommandExit, Exit, Command, Argument, StoreValue +from ..interaction import Request, BooleanRequest from ..ui import UserInterface, CommandMessage