Edgewall Software

Changes between Initial Version and Version 2 of Ticket #2167


Ignore:
Timestamp:
Dec 1, 2005, 9:06:41 AM (18 years ago)
Author:
Christopher Lenz
Comment:

This is fixed in trunk, but should be ported to 0.9-stable.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #2167

    • Property Owner changed from Jonas Borgström to Christopher Lenz
    • Property Status newassigned
    • Property Milestone0.9.1
  • Ticket #2167 – Description

    initial v2  
    11The code forgets to append port= to the dsn string passed to psycopg. Adding:
    22
     3{{{
     4#!python
    35            if port:
    46                dsn.append("port = %d" % (port, ))
     7}}}
    58
    69to line 359 fixes it.