fix start_with check

This commit is contained in:
Frédéric Péters 2015-05-15 19:46:31 +02:00
parent aef9b6d190
commit 59e9519c90
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ module Redmine
def branches(*args)
all_branches = branches_original(*args)
all_branches.find_all { |b| !b.start_with("wip/") }
all_branches.find_all { |b| !b.start_with?("wip/") }
end
end
end