Skip to content

Commit

Permalink
Remove debug print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
Brandon Istenes committed Jul 2, 2017
1 parent d3da517 commit 4e6ea2a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions datastore_to_gcs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import dateutil.parser
import logging
import os
from pprint import pprint, pformat
from pprint import pformat

from google.appengine.ext import ndb

Expand Down Expand Up @@ -60,7 +60,6 @@ def dump(model, gcs_bucket, gcs_path, since=None):
else:
new_items_iter = model.query().iter()
new_items = [i.serializable() for i in new_items_iter]
pprint(new_items)
if len(new_items) > 0:
LOG.info("Uploading {n} items in {m} to {o}".format(n=len(new_items),
m=model._get_kind(),
Expand Down

0 comments on commit 4e6ea2a

Please sign in to comment.