Index: trunk/testing/installer/naive_installer.py |
— | — | @@ -50,7 +50,7 @@ |
51 | 51 | schema_path=os.path.join(destination_dir, installer_name, "schema.sql") |
52 | 52 | if os.path.exists(schema_path): |
53 | 53 | try: |
54 | | - installer_util.sqldotphp(self.instancedir,schema_path) |
| 54 | + installer_util.sqldotphp(self.instancedir(),schema_path) |
55 | 55 | except Exception,e: |
56 | 56 | raise Naive_Installer_Exception("_setup_schema: While installing, I found a schema.sql and tried to use it, but there was some issue with it.\n",e) |
57 | 57 | |