SF.net SVN: fclient:[693] trunk/fclient/src/fclient/lib/fcp2/client.py
Status: Pre-Alpha
Brought to you by:
jurner
|
From: <jU...@us...> - 2008-07-20 10:50:52
|
Revision: 693
http://fclient.svn.sourceforge.net/fclient/?rev=693&view=rev
Author: jUrner
Date: 2008-07-20 10:50:47 +0000 (Sun, 20 Jul 2008)
Log Message:
-----------
filenameCollision consts no longer needed
Modified Paths:
--------------
trunk/fclient/src/fclient/lib/fcp2/client.py
Modified: trunk/fclient/src/fclient/lib/fcp2/client.py
===================================================================
--- trunk/fclient/src/fclient/lib/fcp2/client.py 2008-07-20 10:39:36 UTC (rev 692)
+++ trunk/fclient/src/fclient/lib/fcp2/client.py 2008-07-20 10:50:47 UTC (rev 693)
@@ -1968,11 +1968,14 @@
Global=False,
)
if persistentUserData is not None:
+ oldClientToken = initialRequest['ClientToken']
initialRequest['PersistentUserData'] = persistentUserData
- msg['ClientToken'] = initialRequest.updatePersistentParams()
+ initialRequest.updatePersistentParams()
+ msg['ClientToken'] = initialRequest['ClientToken']
+ initialRequest['ClientToken'] = oldClientToken
if priorityClass is not None:
msg['PriorityClass'] = priorityClass
-
+
self.sendMessage(msg)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|