Skip to content

Commit

Permalink
Updated transfermode so that it is no longer hardcoded.
Browse files Browse the repository at this point in the history
  • Loading branch information
tachang committed Feb 28, 2010
1 parent 259fab5 commit 55ccbeb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Release 2.0/EyeFiServer.py
Original file line number Diff line number Diff line change
Expand Up @@ -568,7 +568,7 @@ def startSession(self, postData):
snonceElement.appendChild(snonceElementText)

transfermodeElement = doc.createElement("transfermode")
transfermodeElementText = doc.createTextNode("2")
transfermodeElementText = doc.createTextNode(handler.extractedElements["transfermode"])
transfermodeElement.appendChild(transfermodeElementText)

transfermodetimestampElement = doc.createElement("transfermodetimestamp")
Expand Down

0 comments on commit 55ccbeb

Please sign in to comment.