Skip to content

Commit

Permalink
Remove print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
gpichot committed Mar 2, 2015
1 parent d15e54a commit 882503b
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion graphos/sources/model.py
Expand Up @@ -6,7 +6,6 @@ def get_field_values(row, fields):
data = []
for field in fields:
value = getattr(row, field)
print value
data.append(value if not callable(value) else value())
return data

Expand Down

0 comments on commit 882503b

Please sign in to comment.