fixed crash that occurs if you type an empty prompt at the dream> prompt

This commit is contained in:
Lincoln Stein 2022-08-22 12:40:54 -04:00
parent aa2729d868
commit e1d52822c5

View File

@ -87,6 +87,9 @@ def main_loop(t2i,parser,log):
break
elements = shlex.split(command)
if len(elements)==0:
continue
if elements[0]=='q': #
done = True
break