Skip to content

Commit

Permalink
Merge e512319 into 235e163
Browse files Browse the repository at this point in the history
  • Loading branch information
jtalowell committed May 9, 2018
2 parents 235e163 + e512319 commit 5048a89
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -91,3 +91,6 @@ ENV/

# Rope project settings
.ropeproject

# pyls cache
.mypy_cache
2 changes: 1 addition & 1 deletion lantern/structures/decryption.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def __init__(self, plaintext, key, score):
key: The key which resulted in this decryption
score: The score of this decryption
"""
self.plaintext = plaintext
self.plaintext = ''.join(plaintext)
self.key = key
self.score = score

Expand Down

0 comments on commit 5048a89

Please sign in to comment.