diff --git a/dr_botzo/markov/models.py b/dr_botzo/markov/models.py index e163762..72a3c6e 100644 --- a/dr_botzo/markov/models.py +++ b/dr_botzo/markov/models.py @@ -35,7 +35,7 @@ class MarkovTarget(models.Model): def __unicode__(self): """String representation.""" - return u"{0:s}".format(self.name) + return u"{0:s} -> {1:s}".format(self.name, self.context.name) class MarkovState(models.Model):