Skip to content

Commit

Permalink
Update HeadExtensions.cs
Browse files Browse the repository at this point in the history
Fixed #3
  • Loading branch information
oondriss authored Aug 22, 2018
1 parent 4f7f085 commit f7a62e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Extensions/HeadExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public static class HeadExtensions
public static string GetFileName(this Head head)
{
var time = DateTime.Now;
return $"export_{head.Name}_{head.Location}_{head.Hall}{time.Year:0000}{time.Month:00}{time.Day:00}-{time.Hour:00}.csv";
return $"export_{head.Name}_{head.Location}_{head.Hall}_{time.Year:0000}{time.Month:00}{time.Day:00}-{time.Hour:00}.csv";
}
}
}

0 comments on commit f7a62e1

Please sign in to comment.