Skip to content

Commit

Permalink
Fix variable name
Browse files Browse the repository at this point in the history
There is no `$director_name` in the current scope, but here is an unused
`$director`.
  • Loading branch information
smortex committed Aug 1, 2018
1 parent e2593af commit 2580edd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/messages.erb
@@ -1,8 +1,8 @@

Messages {
Name = <%= @mname %>
<% if @director_name -%>
Director = <%= @director_name %>
<% if @director -%>
Director = <%= @director %>
<% end -%>
<% if @append -%>
Append = <%= @append %>
Expand Down

0 comments on commit 2580edd

Please sign in to comment.