Переглянути джерело

[metastore] Removed debug info

Enrico Berti 9 роки тому
батько
коміт
78edb4ce3e
1 змінених файлів з 0 додано та 2 видалено
  1. 0 2
      apps/metastore/src/metastore/views.py

+ 0 - 2
apps/metastore/src/metastore/views.py

@@ -321,11 +321,9 @@ def alter_column(request, database, table):
 @check_has_write_access_permission
 def drop_table(request, database):
   db = dbms.get(request.user)
-  print "drop table"
 
   if request.method == 'POST':
     tables = request.POST.getlist('table_selection')
-    print tables
     tables_objects = [db.get_table(database, table) for table in tables]
     try:
       # Can't be simpler without an important refactoring