From 79b72b20a74ab20f66f69bcfd9947ccb191736fd Mon Sep 17 00:00:00 2001 From: Mark Huang Date: Tue, 3 Oct 2006 19:27:28 +0000 Subject: [PATCH] - fix typo --- PLC/SliceInstantiations.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/PLC/SliceInstantiations.py b/PLC/SliceInstantiations.py index 7b4b2a4..e8c5f0f 100644 --- a/PLC/SliceInstantiations.py +++ b/PLC/SliceInstantiations.py @@ -4,7 +4,7 @@ # Mark Huang # Copyright (C) 2006 The Trustees of Princeton University # -# $Id: SliceInstantiations.py,v 1.1 2006/09/06 15:36:07 mlhuang Exp $ +# $Id: SliceInstantiations.py,v 1.1 2006/10/02 15:36:48 mlhuang Exp $ # class SliceInstantiations(list): @@ -13,7 +13,7 @@ class SliceInstantiations(list): """ def __init__(self, api): - sql = "SELECT * FROM slice_instantiations" + sql = "SELECT instantiation FROM slice_instantiations" for row in api.db.selectall(sql): - self.append[row['instantiation']] + self.append(row['instantiation']) -- 2.45.2