Skip to content

Commit

Permalink
Debug output removed.
Browse files Browse the repository at this point in the history
  • Loading branch information
grigoryvp committed Aug 23, 2012
1 parent ff22a8a commit 122d91b
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions parabridge_core/parabridge_daemon.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,6 @@ def FieldKey( i_sParadoxName ) :
mArgs[ 'signature' ] = ", ".join( lSignatures )
sQuery = "CREATE TABLE IF NOT EXISTS {name} ({signature})"
sQuery = sQuery.format( ** mArgs )
print( "\n\n" )
print( sQuery )
i_oConn.execute( sQuery, mArgs )
sQuery = "INSERT INTO {name} ({fields}) VALUES ({values})"
sQuery = sQuery.format( ** mArgs )
Expand All @@ -151,10 +149,6 @@ def FieldKey( i_sParadoxName ) :
## SQLite don't have time types, use |ISO 8601| string.
uField = uField.isoformat()
mArgs[ FieldName( oField.name ) ] = uField
print( "\n" )
print( sQuery )
print( "\n" )
print( mArgs )
i_oConn.execute( sQuery, mArgs )

def shutdown( self ) :
Expand Down

0 comments on commit 122d91b

Please sign in to comment.