Skip to content

Commit

Permalink
Fix unassigned variable
Browse files Browse the repository at this point in the history
  • Loading branch information
blowfishpro committed Oct 1, 2017
1 parent 2dc9f91 commit 6f26939
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ModuleManager/MMPatchLoader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ private IEnumerable<string> GenerateModList(IPatchProgress progress)
else
kspAssemblyVersion = mod.versionMajor + "." + mod.versionMinor;

string fileSha;
string fileSha = "";
try
{
fileSha = FileUtils.FileSHA(mod.assembly.Location);
Expand Down

0 comments on commit 6f26939

Please sign in to comment.