Make file edit error message less specific

The truth is that at the point where there error message is written we
can only guess what went wrong.
This commit is contained in:
Jacob Vosmaer 2014-08-06 14:27:22 +02:00
parent 352af72f43
commit 11d5ad2f17
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ module Files
if created_successfully
success
else
error("Your changes could not be committed, because the file has been changed")
error("Your changes could not be committed. Maybe the file changed, or there was nothing to commit?")
end
end
end