Skip to content

Commit

Permalink
Fixed Style/IndentationWidth
Browse files Browse the repository at this point in the history
  • Loading branch information
lslezak committed Jul 15, 2016
1 parent e354847 commit 80d12a6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions library/system/src/modules/FileChanges.rb
Expand Up @@ -174,11 +174,11 @@ def CheckFiles(files)
return true unless Ops.greater_than(Builtins.size(files), 0)

msg = if Ops.greater_than(Builtins.size(files), 1)
# Continue/Cancel question, %1 is a coma separated list of file names
_("Files %1 have been changed manually.\nYaST might lose some of the changes")
# Continue/Cancel question, %1 is a coma separated list of file names
_("Files %1 have been changed manually.\nYaST might lose some of the changes")
else
# Continue/Cancel question, %1 is a file name
_("File %1 has been changed manually.\nYaST might lose some of the changes.\n")
# Continue/Cancel question, %1 is a file name
_("File %1 has been changed manually.\nYaST might lose some of the changes.\n")
end

msg = Builtins.sformat(msg, Builtins.mergestring(files, ", "))
Expand Down

0 comments on commit 80d12a6

Please sign in to comment.