SF.net SVN: fclient:[893] trunk/fclient/fclient/impl/lib/fcp2
Status: Pre-Alpha
Brought to you by:
jurner
|
From: <jU...@us...> - 2008-08-11 10:40:18
|
Revision: 893
http://fclient.svn.sourceforge.net/fclient/?rev=893&view=rev
Author: jUrner
Date: 2008-08-11 10:40:25 +0000 (Mon, 11 Aug 2008)
Log Message:
-----------
weird typo
Modified Paths:
--------------
trunk/fclient/fclient/impl/lib/fcp2/client.py
trunk/fclient/fclient/impl/lib/fcp2/message.py
Modified: trunk/fclient/fclient/impl/lib/fcp2/client.py
===================================================================
--- trunk/fclient/fclient/impl/lib/fcp2/client.py 2008-08-10 19:23:17 UTC (rev 892)
+++ trunk/fclient/fclient/impl/lib/fcp2/client.py 2008-08-11 10:40:25 UTC (rev 893)
@@ -833,7 +833,7 @@
initialRequest['RequestStatus'] |= consts.ConstRequestStatus.Success
initialRequest['MetadataContentType'] = msg.get('Metadata.ContentType', '')
initialRequest['MetadataSize'] = msg.get('DataLength', 0)
- initialRequest['ProgressSucceeeded'] = initialRequest['ProgressRequired']
+ initialRequest['ProgressSucceeded'] = initialRequest['ProgressRequired']
# except from GetData all requests are complete here. Next GetData will run through AllData...
@@ -1016,7 +1016,7 @@
# we ignore them
initialRequest['RequestStatus'] |= consts.ConstRequestStatus.Success
initialRequest['URI'] = msg['URI']
- initialRequest['ProgressSucceeeded'] = initialRequest['ProgressRequired']
+ initialRequest['ProgressSucceeded'] = initialRequest['ProgressRequired']
self._finalizeRequest(msg, initialRequest, self.events.RequestCompleted)
return True
Modified: trunk/fclient/fclient/impl/lib/fcp2/message.py
===================================================================
--- trunk/fclient/fclient/impl/lib/fcp2/message.py 2008-08-10 19:23:17 UTC (rev 892)
+++ trunk/fclient/fclient/impl/lib/fcp2/message.py 2008-08-11 10:40:25 UTC (rev 893)
@@ -232,7 +232,7 @@
_PrivateParam('ProgressRequired'): 0,
_PrivateParam('ProgressFailed'): 0,
_PrivateParam('ProgressFatalyFailed'): 0,
- _PrivateParam('ProgressSucceeeded'): 0,
+ _PrivateParam('ProgressSucceeded'): 0,
}
_AdditionalParamsGet.update(_AdditionalParamsCommon)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|