From 690082837e32e2292d293407a248549a2ba3989a Mon Sep 17 00:00:00 2001
From: Faiyaz Ahmed <faiyaza@cs.princeton.edu>
Date: Wed, 14 Nov 2007 03:08:20 +0000
Subject: [PATCH] In case the API isn't installed, skip docbook stuffs.

---
 api_calls.py | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/api_calls.py b/api_calls.py
index 5804258..fa13792 100644
--- a/api_calls.py
+++ b/api_calls.py
@@ -21,7 +21,9 @@ import xmlrpclib
 try:
 	from PLC.Parameter import Parameter, Mixed
 except:
-	pass
+    def Parameter(a = None, b = None): pass
+    def Mixed(a = None, b = None, c = None): pass
+
 
 import accounts
 import logger
-- 
2.47.0