diff options
| author | alex.boterolowry <alex.boterolowry@5914aa95-5b3a-0410-a3b5-7b719e7fe9b2> | 2009-11-13 21:38:12 +0000 |
|---|---|---|
| committer | alex.boterolowry <alex.boterolowry@5914aa95-5b3a-0410-a3b5-7b719e7fe9b2> | 2009-11-13 21:38:12 +0000 |
| commit | 472117ea73f75dfbadfddac05ca42623278525d9 (patch) | |
| tree | 0bfbeff2a4696f96632e0e768265e79ca5b03194 /freebase/fcl/fcl.py | |
| parent | c0689bf564d1a478f90b24a4b3dc142339aec358 (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-x | freebase/fcl/fcl.py | 4 |
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: |
