>
> The only information that I get is this part of the traceback:
>>
>
(the error is generated since the first time the app launches)
Function argument list

(self=<gluon.contrib.heroku.HerokuPostgresAdapter object>, *a=('CREATE 
TABLE IF NOT EXISTS web2py_filesystem (path VARCHAR(255), content TEXT, 
PRIMARY KEY(path));',), **b={})
Code listing

1905.
1906.
1907.
1908.
1909.
1910.

1911.
1912.
1913.
1914.

            command = self.filter_sql_command(command)
        if self.db._debug:
            LOGGER.debug('SQL: %s' % command)
        self.db._lastsql = command
        t0 = time.time()
        ret = self.cursor.execute(command, *a[1:], **b)

        self.db._timings.append((command,time.time()-t0))
        del self.db._timings[:-TIMINGSSIZE]
        return ret

Variablesself<gluon.contrib.heroku.HerokuPostgresAdapter object>retundefined
self.cursor.execute<built-in method execute of psycopg2._psycopg.cursor 
object>a('CREATE TABLE IF NOT EXISTS web2py_filesystem (path VARCHAR(255), 
content TEXT, PRIMARY KEY(path));',)b{}self.cursor<cursor object at 
0x21c3908; closed: 0>command'CREATE TABLE IF NOT EXISTS web2py_filesystem 
(path VARCHAR(255), content TEXT, PRIMARY KEY(path));'
 

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to