summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.eu>2020-11-28 22:38:32 +0100
committerRené 'Necoro' Neumann <necoro@necoro.eu>2020-11-28 22:38:32 +0100
commit918dee51daf6d1c5ef18db6b32b067880210988d (patch)
treefaa4df56e1387e760da14b1a39fc61bc657f8316
parent3b37bdd31559edbaec431c359d75bc4a7e5eaade (diff)
downloaddotfiles-918dee51daf6d1c5ef18db6b32b067880210988d.tar.gz
dotfiles-918dee51daf6d1c5ef18db6b32b067880210988d.tar.bz2
dotfiles-918dee51daf6d1c5ef18db6b32b067880210988d.zip
Nobody is using mercurial anymore...
-rw-r--r--.hgext/hgdiffstat.py19
1 files changed, 0 insertions, 19 deletions
diff --git a/.hgext/hgdiffstat.py b/.hgext/hgdiffstat.py
deleted file mode 100644
index fe8fcea..0000000
--- a/.hgext/hgdiffstat.py
+++ /dev/null
@@ -1,19 +0,0 @@
-from mercurial import patch, util
-
-def diffstat(ui, repo, **kwargs):
- '''Use it like:
-
- [hooks]
- commit.diffstat = python:/path/to/this/file.py:diffstat
- changegroup.diffstat = python:/path/to/this/file.py:diffstat
- '''
- if kwargs.get('parent2'):
- return
- node = kwargs['node']
- first = repo[node].parents()[0].node()
- if 'url' in kwargs:
- last = repo['tip'].node()
- else:
- last = node
- diff = patch.diff(repo, first, last)
- ui.write(patch.diffstat(util.iterlines(diff)))