Bug Link:
http://sourceforge.net/tracker/index.php?func=detail&aid=1654768&group_id=8
6244&atid=578926
The patch to this problem is as follows:
After line 83 in the 'connect' code, add:
# special case of b is a 'port'
if string.lower(b[0]) == 'port':
b[1] = int(b[1])
The new code will read:
.
.
.
else:
if len(b) < 2:
b.append("") # empty value
# special case of b is a 'port'
if string.lower(b[0]) == 'port':
b[1] = int(b[1])
self.__connection_vars[string.lower(b[0])]=b[1]
.
.
.
Although the formatting will be broken by this post, you get the ID.
No exception handling is done here and that's intentional. A connection
error can be raised if the int(b[1]) operation fails, but I'll leave that
up to the neurokode guys.
-Nate
Bryan J Gudorf
None
None
Public
|
Date: 2007-08-23 02:20
|
|
Date: 2007-08-08 12:09
|
| Field | Old Value | Date | By |
|---|---|---|---|
| status_id | Pending | 2007-08-23 02:20 | sf-robot |
| close_date | 2007-08-08 12:09 | 2007-08-23 02:20 | sf-robot |
| status_id | Open | 2007-08-08 12:09 | brujahpriest |
| assigned_to | nobody | 2007-08-08 12:09 | brujahpriest |
| close_date | - | 2007-08-08 12:09 | brujahpriest |
Copyright © 2010 Geeknet, Inc. All rights reserved. Terms of Use