From b58582dd892f3e4f827568d6e6c89887d5132249 Mon Sep 17 00:00:00 2001 From: Joe Shochet Date: Sat, 4 Jan 2003 18:46:43 +0000 Subject: [PATCH] *** empty log message *** --- direct/src/distributed/Account.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 direct/src/distributed/Account.py diff --git a/direct/src/distributed/Account.py b/direct/src/distributed/Account.py new file mode 100644 index 0000000000..1936cab5d5 --- /dev/null +++ b/direct/src/distributed/Account.py @@ -0,0 +1,12 @@ +""" +Account module: stub to fulfill the Account toon.dc Distributed Class +This is a class Roger needs for the server to be able to display these values +appropriately in the db web interface. +""" + +import DistributedObject + +class Account(DistributedObject.DistributedObject): + def __init__(self, cr): + pass +