reapack

Package manager for REAPER
Log | Files | Refs | Submodules | README | LICENSE

commit 1e102bb1f48e2982653d53a85d8b2d434b6822eb
parent 7edfb975a4a0c449e855c6666946a9fead06c574
Author: cfillion <cfillion@users.noreply.github.com>
Date:   Tue, 26 Jan 2016 21:05:40 -0500

tidy up the list of newly installed packages

Diffstat:
Msrc/report.cpp | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/report.cpp b/src/report.cpp @@ -84,7 +84,7 @@ void Report::printNewPackages() for(const Transaction::InstallTicket &entry : m_transaction->newPackages()) { Version *ver = entry.first; - m_stream << NL << ver->fullName() << NL; + m_stream << NL << ver->fullName(); } }