Skip to content
This repository has been archived by the owner on Jan 29, 2020. It is now read-only.

Commit

Permalink
Merge branch 'hotfix/3194'
Browse files Browse the repository at this point in the history
  • Loading branch information
weierophinney committed Dec 11, 2012
2 parents ece5010 + 6058c2d commit 441b9de
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Adapter/AbstractAdapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,8 @@ public function writeLine($text = "", $color = null, $bgColor = null)
} elseif ($width == $consoleWidth) {
$this->write($text, $color, $bgColor);
} else {
$this->write($text . "\n", $color, $bgColor);
$this->write($text, $color, $bgColor);
$this->write("\n");
}
}

Expand Down

0 comments on commit 441b9de

Please sign in to comment.