Skip to content

Commit

Permalink
fixed undefined reference
Browse files Browse the repository at this point in the history
  • Loading branch information
sanderfoobar committed Jul 21, 2017
1 parent 274226f commit 2871a2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/channels/stegaref/stegaref.py
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ def _load_languages(self):
import string
for letter in string.ascii_lowercase:
if not any([l for l in languages if l.startswith(letter)]):
raise ChannelException(error_language_start_letter_s % letter)
raise ChannelException(core.messages.stegareferrer.error_language_start_letter_s % letter)

return languages

Expand Down

0 comments on commit 2871a2b

Please sign in to comment.