forked from FrederikBaerentsen/BrickTracker
Remove debug prints
This commit is contained in:
parent
86fea8cd7d
commit
2908e80293
@ -24,20 +24,15 @@ class BrickSQLMigrationList(object):
|
|||||||
'sql/migrations/*.sql'
|
'sql/migrations/*.sql'
|
||||||
)
|
)
|
||||||
|
|
||||||
print(path)
|
|
||||||
|
|
||||||
files = glob(path)
|
files = glob(path)
|
||||||
|
|
||||||
print(files)
|
|
||||||
|
|
||||||
for file in files:
|
for file in files:
|
||||||
try:
|
try:
|
||||||
BrickSQLMigrationList.migrations.append(
|
BrickSQLMigrationList.migrations.append(
|
||||||
BrickSQLMigration(file)
|
BrickSQLMigration(file)
|
||||||
)
|
)
|
||||||
# Ignore file if error
|
# Ignore file if error
|
||||||
except Exception as e:
|
except Exception:
|
||||||
print(e)
|
|
||||||
pass
|
pass
|
||||||
|
|
||||||
# Get the sorted list of pending migrations
|
# Get the sorted list of pending migrations
|
||||||
|
Loading…
Reference in New Issue
Block a user