Skip to content

Commit

Permalink
Merge pull request #55 from mpareja/txt_version
Browse files Browse the repository at this point in the history
Converting the TXT file version path to a full path to improve logging.
  • Loading branch information
ferventcoder committed Feb 19, 2012
2 parents 7aa4f07 + 696078d commit 169e773
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion product/roundhouse/resolvers/TextVersionResolver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class TextVersionResolver : VersionResolver
public TextVersionResolver(FileSystemAccess file_system, string version_file)
{
this.file_system = file_system;
this.version_file = version_file;
this.version_file = file_system.get_full_path(version_file);
}

public bool meets_criteria()
Expand Down

0 comments on commit 169e773

Please sign in to comment.