Skip to content

Commit

Permalink
Fix syntax error in commands.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
AGWA committed Feb 9, 2015
1 parent 012d78e commit 8c130d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion commands.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1070,7 +1070,7 @@ int add_gpg_user (int argc, const char** argv)
if (access(state_gitattributes_path.c_str(), F_OK) != 0) {
std::ofstream state_gitattributes_file(state_gitattributes_path.c_str());
// |--------------------------------------------------------------------------------| 80 chars
state_gitattributes_file << "# Do not edit this file. To specify the files to encrypt, create your own\";
state_gitattributes_file << "# Do not edit this file. To specify the files to encrypt, create your own\n";
state_gitattributes_file << "# .gitattributes file in the directory where your files are.\n";
state_gitattributes_file << "* !filter !diff\n";
state_gitattributes_file.close();
Expand Down

0 comments on commit 8c130d3

Please sign in to comment.