Skip to content

Commit

Permalink
Bugfix.
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Sandve Alnæs committed Mar 15, 2016
1 parent 6660a4a commit 6cd8523
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nbdime/merging/notebooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ def merge_notebooks(base, local, remote, args):

# Execute a generic merge operation
merged, local_diffs, remote_diffs = merge_with_diff(base, local, remote, local_diffs, remote_diffs)
merged = nbformat.from_dict(merged)

# Try to resolve conflicts based on behavioural options
resolved, local_diffs, remote_diffs = \
autoresolve_notebook_conflicts(merged, local_diffs, remote_diffs, args)

resolved = nbformat.from_dict(resolved)
return resolved, local_diffs, remote_diffs

0 comments on commit 6cd8523

Please sign in to comment.