From: Mark Huang Date: Tue, 3 Oct 2006 19:27:28 +0000 (+0000) Subject: - fix typo X-Git-Tag: pycurl-7_13_1~673 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=79b72b20a74ab20f66f69bcfd9947ccb191736fd;p=plcapi.git - fix typo --- diff --git a/PLC/SliceInstantiations.py b/PLC/SliceInstantiations.py index 7b4b2a43..e8c5f0f3 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'])