Download:
child 12:7c18de2de921
parent 10:198302d7eeaf
11:4eebb2e67e85 draft
Anton Shestakov <av6@dwimlabs.net>, Fri, 19 Oct 2018 01:24:04 +0800
plugin: be a good bot and use HGPLAIN=1

1 файлов изменено, 1 вставок(+), 1 удалений(-) [+]
plugin.py file | annotate | diff | comparison | revisions
--- a/plugin.py Wed May 01 16:13:25 2013 -0500
+++ b/plugin.py Fri Oct 19 01:24:04 2018 +0800
@@ -112,7 +112,7 @@
self.path = path
def run(self, args):
- fd = os.popen('%s %s' % (self.path, args))
+ fd = os.popen('HGPLAIN=1 %s %s' % (self.path, args))
out = fd.read()
fd.close()