Fix #1484: trying to access the screen object when not using interactive mode

This commit is contained in:
Andrew Resch 2011-01-16 15:58:50 -08:00
parent 8c12c47d3e
commit b30499c6ac
1 changed files with 5 additions and 4 deletions

View File

@ -189,10 +189,11 @@ class Command(BaseCommand):
s += " %s" % (fp)
# Check if this is too long for the screen and reduce the path
# if necessary
cols = self.console.screen.cols
slen = colors.get_line_length(s, self.console.screen.encoding)
if slen > cols:
s = s.replace(f["path"], f["path"][slen - cols + 1:])
if hasattr(self.console, "screen"):
cols = self.console.screen.cols
slen = colors.get_line_length(s, self.console.screen.encoding)
if slen > cols:
s = s.replace(f["path"], f["path"][slen - cols + 1:])
self.console.write(s)
self.console.write(" {!info!}::Peers")