Fixes typo in plugin migration paths

Change-Id: I83e5c1b342bcf25fb69235b8c4673e64375e11d9
This commit is contained in:
rajarammallya 2012-02-20 22:07:02 +05:30
parent ddca783309
commit ea212892db
1 changed files with 3 additions and 3 deletions

View File

@ -61,13 +61,13 @@ class Commands(object):
self.conf = conf
def db_sync(self, repo_path=None):
db_api.db_sync(self.conf, repo_path=None)
db_api.db_sync(self.conf, repo_path=repo_path)
def db_upgrade(self, version=None, repo_path=None):
db_api.db_upgrade(self.conf, version, repo_path=None)
db_api.db_upgrade(self.conf, version, repo_path=repo_path)
def db_downgrade(self, version, repo_path=None):
db_api.db_downgrade(self.conf, version, repo_path=None)
db_api.db_downgrade(self.conf, version, repo_path=repo_path)
def execute(self, command_name, *args):
if self.has(command_name):