Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/backup/lfs.rb')
-rw-r--r--lib/backup/lfs.rb7
1 files changed, 2 insertions, 5 deletions
diff --git a/lib/backup/lfs.rb b/lib/backup/lfs.rb
index 17f7b8bf8b0..e92f235a2d7 100644
--- a/lib/backup/lfs.rb
+++ b/lib/backup/lfs.rb
@@ -2,14 +2,11 @@
module Backup
class Lfs < Backup::Files
- attr_reader :progress
-
def initialize(progress)
- @progress = progress
-
- super('lfs', Settings.lfs.storage_path)
+ super(progress, 'lfs', Settings.lfs.storage_path)
end
+ override :human_name
def human_name
_('lfs objects')
end