Browse Source

Removed anoying integers on the log

Marcos Dumay de Medeiros 8 years ago
parent
commit
2c154db65a
1 changed files with 0 additions and 1 deletions
  1. 0 1
      src/rapid/widgets.py

+ 0 - 1
src/rapid/widgets.py

@@ -94,7 +94,6 @@ class RapidSelector(widgets.Select):
 
     def value_from_datadict(self, data, files, name):
         val = data.get(name)
-        print val
         if self.allow_multiple_selected:
             if val:
                 return [int(x) for x in val.split(",") if x]