From 2bd03223f1e1606af921e3ca6803041dd858b598 Mon Sep 17 00:00:00 2001 From: Tony Mack Date: Tue, 3 Jan 2012 01:14:12 -0500 Subject: [PATCH] fix AttributeError in sync() --- sfa/storage/record.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()) -- 2.43.0