~gandelman-a/ubuntu/precise/glance/899970

« back to all changes in this revision

Viewing changes to glance/registry/db/migrate_repo/schema.py

  • Committer: Package Import Robot
  • Author(s): Chuck Short, Chuck Short, Monty Taylor, Scott Moser, Ben Howard
  • Date: 2011-08-26 10:13:39 UTC
  • mfrom: (1.1.11 upstream)
  • Revision ID: package-import@ubuntu.com-20110826101339-mn8akhehsitvjgld
Tags: 2011.3~d4-0ubuntu1
[Chuck Short]
* New upstream release.

[ Monty Taylor ]
* New upstream release.
* Added python-kombu as Depends and Build-depends.

[ Scott Moser ]
* glance.postinst: use a trailing slash when using chown on directories

[ Ben Howard ]
* Install /etc/glance-scrubber.conf by default (LP: #816972)
* Remove glance user and logs on purge (LP: #828721)
* Converted dh to use "--with python2".
* Incremented standards version to 3.9.2; no changes required

Show diffs side-by-side

added added

removed removed

Lines of Context:
93
93
 
94
94
def create_tables(tables):
95
95
    for table in tables:
96
 
        logger.info("creating table %(table)s" % locals())
 
96
        logger.info(_("creating table %(table)s") % locals())
97
97
        table.create()
98
98
 
99
99
 
100
100
def drop_tables(tables):
101
101
    for table in tables:
102
 
        logger.info("dropping table %(table)s" % locals())
 
102
        logger.info(_("dropping table %(table)s") % locals())
103
103
        table.drop()