From: Tony Mack Date: Tue, 3 Jan 2012 06:14:12 +0000 (-0500) Subject: fix AttributeError in sync() X-Git-Tag: sfa-2.0-7~3 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=2bd03223f1e1606af921e3ca6803041dd858b598;hp=519a8f070faee9c999137c6f95b30b3955ffe08f;p=sfa.git fix AttributeError in sync() --- diff --git a/sfa/storage/record.py b/sfa/storage/record.py index 964d65c6..e164dda2 100644 --- a/sfa/storage/record.py +++ b/sfa/storage/record.py @@ -394,7 +394,7 @@ class SfaRecord(Row): else: existing_record = existing_records[0] self['record_id'] = existing_record['record_id'] - table.upate(self) + table.update(self) if verbose: logger.info("Updated record: %s" % self.summary_string())