1
1
mirror of https://github.com/yandex/pgmigrate.git synced 2024-09-17 15:17:18 +03:00

Remove log message when migrations folder not found

This commit is contained in:
Ernst Haagsman 2017-11-23 11:31:05 +01:00
parent 3c2f93ae13
commit 37c13225bb

View File

@ -189,10 +189,6 @@ def _get_migrations_info_from_dir(base_dir):
'\nsecond: %s' % migrations[version].filePath)
migrations[version] = migration
else:
LOG.error(
"Could not find 'migrations' directory. Did you specify the "
"correct base_dir?"
)
raise MalformedMigration('Could not find migrations directory')
return migrations