Przeglądaj źródła

[metastore] Removed debug info

Enrico Berti 9 lat temu
rodzic
commit
78edb4c
1 zmienionych plików z 0 dodań i 2 usunięć
  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