From 4805fbf9d500479c57e15a1789f1945c9fc5920c Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Wed, 12 May 2010 13:51:17 -0400 Subject: [PATCH] Fix hooke.ui.commandline imports following hooke.interaction creation. --- hooke/ui/commandline.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.26.2