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'
|
||||
)
|
||||
|
||||
print(path)
|
||||
|
||||
files = glob(path)
|
||||
|
||||
print(files)
|
||||
|
||||
for file in files:
|
||||
try:
|
||||
BrickSQLMigrationList.migrations.append(
|
||||
BrickSQLMigration(file)
|
||||
)
|
||||
# Ignore file if error
|
||||
except Exception as e:
|
||||
print(e)
|
||||
except Exception:
|
||||
pass
|
||||
|
||||
# Get the sorted list of pending migrations
|
||||
|
Loading…
Reference in New Issue
Block a user