Skip to content

Commit

Permalink
external method fix
Browse files Browse the repository at this point in the history
  • Loading branch information
thet committed Feb 18, 2015
1 parent 24ba273 commit f19b7b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions collective/jsonify/Extensions/json_methods.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
def export_content(self):
return export_content_orig(
self,
basedir='~/', # base directory for the exported JSON files
skip_callback=lambda: False, # optional callback. Returns True to skip an item. # noqa
basedir='/tmp', # absolute path to directory for the JSON export
skip_callback=lambda item: False, # optional callback. Returns True to skip an item. # noqa
extra_skip_classname=[], # optional list of classnames to skip
# batch_start=0,
# batch_size=5000,
Expand Down

0 comments on commit f19b7b0

Please sign in to comment.