From 214a47e350bfec53d7c361ddd555023cc02fcf53 Mon Sep 17 00:00:00 2001 From: Tony Mack Date: Fri, 8 Jun 2007 17:59:53 +0000 Subject: [PATCH] - validate last_contact field before sync --- PLC/Nodes.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/PLC/Nodes.py b/PLC/Nodes.py index 49abea36..03907c7a 100644 --- a/PLC/Nodes.py +++ b/PLC/Nodes.py @@ -4,7 +4,7 @@ # Mark Huang # Copyright (C) 2006 The Trustees of Princeton University # -# $Id: Nodes.py,v 1.31 2007/01/11 05:31:33 mlhuang Exp $ +# $Id: Nodes.py,v 1.32 2007/04/03 19:14:45 tmack Exp $ # from types import StringTypes @@ -95,6 +95,7 @@ class Node(Row): validate_date_created = Row.validate_timestamp validate_last_updated = Row.validate_timestamp + validate_last_contact = Row.validate_timestamp def update_last_contact(self, commit = True): """ -- 2.47.0