From e457b54d09451a64c8c6a48e468b20b28e6d11f3 Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Thu, 22 Dec 2016 23:12:41 +0100 Subject: [PATCH] Small output adjustment. --- src/nimble.nim | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/nimble.nim b/src/nimble.nim index 7c50a27..912cf5a 100644 --- a/src/nimble.nim +++ b/src/nimble.nim @@ -285,7 +285,8 @@ proc processDeps(pkginfo: PackageInfo, options: Options): seq[string] = pkg = installedPkg # For addRevDep else: - display("Info", "Dependency already satisfied", priority = HighPriority) + display("Info:", "Dependency on $1 already satisfied" % depDesc, + priority = HighPriority) result.add(pkg.mypath.splitFile.dir) # Process the dependencies of this dependency. result.add(processDeps(pkg, options))