Author: nextgens Date: 2009-03-22 21:54:12 +0000 (Sun, 22 Mar 2009) New Revision: 26138
Modified: trunk/apps/pyFreenet/fcp/node.py Log: freesitemgr: maybe fix ArneBab's problem (http://paste.lisp.org/display/77425) Modified: trunk/apps/pyFreenet/fcp/node.py =================================================================== --- trunk/apps/pyFreenet/fcp/node.py 2009-03-22 10:21:17 UTC (rev 26137) +++ trunk/apps/pyFreenet/fcp/node.py 2009-03-22 21:54:12 UTC (rev 26138) @@ -2623,6 +2623,7 @@ Attributes of interest: - isPersistent - True if job is persistent - isGlobal - True if job is global + - followRedirect - follow a redirect if true, otherwise fail the get - value - value returned upon completion, or None if not complete - node - the node this job belongs to - id - the job Identifier @@ -2645,6 +2646,7 @@ self._log = opts.get('logger', self.defaultLogger) self.keep = opts.get('keep', False) self.stream = opts.get('stream', None) + self.followRedirect = opts.get('followRedirect', False) # find out if persistent if kw.get("Persistent", "connection") != "connection" \
