Mercurial > p > roundup > code
diff roundup/backends/rdbms_common.py @ 4062:6ea417bafd9c
Fix typo.
| author | Stefan Seefeld <stefan@seefeld.name> |
|---|---|
| date | Fri, 20 Feb 2009 12:45:57 +0000 |
| parents | 52431f2ad76b |
| children | e039f3cbbb96 |
line wrap: on
line diff
--- a/roundup/backends/rdbms_common.py Fri Feb 20 04:54:13 2009 +0000 +++ b/roundup/backends/rdbms_common.py Fri Feb 20 12:45:57 2009 +0000 @@ -260,7 +260,7 @@ return 0 if version < 2: - log_info('upgrade to version 2') + self.log_info('upgrade to version 2') # change the schema structure self.database_schema = {'tables': self.database_schema} @@ -273,7 +273,7 @@ self.create_version_2_tables() if version < 3: - log_info('upgrade to version 3') + self.log_info('upgrade to version 3') self.fix_version_2_tables() if version < 4:
