summaryrefslogtreecommitdiff
path: root/freebase/fcl/fcl.py
diff options
context:
space:
mode:
authoralex.boterolowry <alex.boterolowry@5914aa95-5b3a-0410-a3b5-7b719e7fe9b2>2009-11-13 21:38:12 +0000
committeralex.boterolowry <alex.boterolowry@5914aa95-5b3a-0410-a3b5-7b719e7fe9b2>2009-11-13 21:38:12 +0000
commit472117ea73f75dfbadfddac05ca42623278525d9 (patch)
tree0bfbeff2a4696f96632e0e768265e79ca5b03194 /freebase/fcl/fcl.py
parentc0689bf564d1a478f90b24a4b3dc142339aec358 (diff)
fix the weird not-singleton out issue
git-svn-id: http://freebase-python.googlecode.com/svn/trunk@223 5914aa95-5b3a-0410-a3b5-7b719e7fe9b2
Diffstat (limited to 'freebase/fcl/fcl.py')
-rwxr-xr-xfreebase/fcl/fcl.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/freebase/fcl/fcl.py b/freebase/fcl/fcl.py
index 812b7fe..3e51583 100755
--- a/freebase/fcl/fcl.py
+++ b/freebase/fcl/fcl.py
@@ -40,7 +40,6 @@ try:
except ImportError:
import json
-
from cmdutil import CmdException, log, out
from fbutil import FbException, default_propkeys
@@ -53,8 +52,6 @@ _cookiedir = None
if os.environ.has_key('HOME'):
_cookiedir = os.path.join(os.environ['HOME'], '.pyfreebase')
-
-
class Command(object):
def __init__(self, module, name, func):
self.module = module
@@ -83,6 +80,7 @@ class FclCommandHandler(object):
self.cwid = ''
self.progpath = 'fcl'
self.commands = {}
+ self.out = out
self.cookiefile = None
if _cookiedir is not None: