From: Mark Hymers Date: Sat, 7 Nov 2009 13:04:46 +0000 (+0000) Subject: if it isn't a dictionary, don't try and use it as one... X-Git-Url: https://git.decadent.org.uk/gitweb/?a=commitdiff_plain;h=5ab85af48884e37a8ecad6a2eb9c148b05db39e3;p=dak.git if it isn't a dictionary, don't try and use it as one... Signed-off-by: Mark Hymers --- diff --git a/daklib/changes.py b/daklib/changes.py index c1f8f5ba..b1a5f60a 100644 --- a/daklib/changes.py +++ b/daklib/changes.py @@ -202,7 +202,7 @@ class Changes(object): if isinstance(self.changes[key], dict): multivalues[key] = " ".join(self.changes[key].keys()) else: - multivalues[key] = self.changes[key].keys() + multivalues[key] = self.changes[key] # TODO: Use ORM session.execute(