From c9c1bdc0ab3891d04623b96a0f40e43af707abce Mon Sep 17 00:00:00 2001 From: Matt Kline Date: Sat, 7 Mar 2015 20:01:17 -0800 Subject: [PATCH] Fix some imports in git.d --- git.d | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/git.d b/git.d index db10cf5..46372ee 100644 --- a/git.d +++ b/git.d @@ -2,8 +2,8 @@ import std.algorithm : canFind, filter, splitter; import std.conv : to; import std.datetime : Clock, Duration; import std.exception : enforce; -import std.file : DirEntry; -import std.path : baseName, buildPath, dirEntries, relativePath, readText, SpanMode; +import std.file : dirEntries, DirEntry, readText, SpanMode; +import std.path : baseName, buildPath, relativePath; import std.process; // : A whole lotta stuff import std.range : empty, front, back; import std.stdio : File;