Skip to content

Commit

Permalink
Refactoring.
Browse files Browse the repository at this point in the history
  • Loading branch information
grigoryvp committed Jan 13, 2013
1 parent 8ddad70 commit 2c4337d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parabridge/parabridge_daemon.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def FieldKey( i_sParadoxName ) :
if pyparadox.CField.AUTOINCREMENT == oField.type :
sSignature = "{0} INTEGER".format( sName )
else :
sSignature = "{0} {1}".format( sName, oField.ToSqliteType() )
sSignature = "{0} {1}".format( sName, oField.toSqliteType() )
lSignatures.append( sSignature )
mArgs[ 'signature' ] = ", ".join( lSignatures )
sQuery = "CREATE TABLE IF NOT EXISTS {name} ({signature})"
Expand Down

0 comments on commit 2c4337d

Please sign in to comment.