Public » Mercurial » hg-lisppaste
Clone URL:  
Pushed to one repository · View In Graph Contained in tip

do not separate diff chunks by extra newline

Changeset b4994d4cc1f7

Parent 8aefe73aadc3

by Profile picture of Benjamin PollackBenjamin Pollack

Changes to one file · Browse files at b4994d4cc1f7 Showing diff from parent 8aefe73aadc3 Diff from another changeset...

Change 1 of 1 Show Entire File lisppaste.py Stacked
 
45
46
47
48
 
49
50
51
 
45
46
47
 
48
49
50
51
@@ -45,7 +45,7 @@
  node1, node2 = cmdutil.revpair(repo, rev)   m = cmdutil.match(repo, None, opts)   diffs = patch.diff(repo, node1, node2, match=m, opts=patch.diffopts(ui, opts)) - udiff = '\n'.join(diffs) + udiff = ''.join(diffs)   if not udiff:   ui.status('no changes found; nothing uploaded\n')   return