SF.net SVN: fclient: [137] trunk/sandbox/fcp/fcp2_0_message.py
Status: Pre-Alpha
Brought to you by:
jurner
|
From: <ju...@us...> - 2008-02-04 11:53:19
|
Revision: 137
http://fclient.svn.sourceforge.net/fclient/?rev=137&view=rev
Author: jurner
Date: 2008-02-04 03:53:08 -0800 (Mon, 04 Feb 2008)
Log Message:
-----------
remove3d checks... ClientPutComplexDir does not like them
Modified Paths:
--------------
trunk/sandbox/fcp/fcp2_0_message.py
Modified: trunk/sandbox/fcp/fcp2_0_message.py
===================================================================
--- trunk/sandbox/fcp/fcp2_0_message.py 2008-02-04 11:51:16 UTC (rev 136)
+++ trunk/sandbox/fcp/fcp2_0_message.py 2008-02-04 11:53:08 UTC (rev 137)
@@ -199,13 +199,6 @@
out.append('%s=%s' % (param, value))
if self.data:
- assert 'DataLength' in self.params, 'DataLength member required'
- n = None
- try:
- n = int(self['DataLength'])
- except ValueError: pass
- assert n is not None, 'DataLength member must be an integer'
- assert n == len(self.data), 'DataLength member must corrospond to lenght of data'
out.append('Data')
out.append(self.data)
else:
@@ -214,3 +207,5 @@
+
+
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|