<div dir="ltr">Hello All,<div><br></div><div>I created a patch for Bug #6381 (DMR-Marc repeater download problem) and attached it here.  The URL and format changed.  I just followed the links in a web browser and fixed the format parsing.  Let me know if there is a better process for this.  I tried to follow the Wiki process, but couldn&#39;t get the automatic email from the command line working.</div><div><br></div><div>--Jeff</div><div><br></div><div><br></div><div># HG changeset patch<br># User Jeff Johnson &lt;<a href="mailto:jeffjohnson0@gmail.com">jeffjohnson0@gmail.com</a>&gt;<br># Date 1573797619 28800<br>#      Thu Nov 14 22:00:19 2019 -0800<br># Node ID cbf3ce3272c77006a84980cea99d4c38b25cb5a5<br># Parent  067b69c9b7d04d49462f390d99bc7f80c4b1b5d2<br>Bug #6381 Added new link and JSON structure for DMR-Marc repeaters.<br><br>diff --git a/chirp/dmrmarc.py b/chirp/dmrmarc.py<br>--- a/chirp/dmrmarc.py<br>+++ b/chirp/dmrmarc.py<br>@@ -35,8 +35,7 @@<br>     VENDOR = &quot;DMR-MARC&quot;<br>     MODEL = &quot;Repeater database&quot;<br> <br>-    URL = &quot;<a href="http://www.dmr-marc.net/cgi-bin/trbo-database/datadump.cgi">http://www.dmr-marc.net/cgi-bin/trbo-database/datadump.cgi</a>?&quot; \<br>-          &quot;table=repeaters&amp;format=json&quot;<br>+    URL = &quot;<a href="https://www.radioid.net/static/rptrs.json">https://www.radioid.net/static/rptrs.json</a>&quot;<br> <br>     def __init__(self, *args, **kwargs):<br>         chirp_common.NetworkSourceRadio.__init__(self, *args, **kwargs)<br>@@ -54,7 +53,7 @@<br>         filename, headers = urllib.urlretrieve(self.URL, fn)<br>         with open(fn, &#39;r&#39;) as f:<br>             try:<br>-                self._repeaters = json.load(f)[&#39;repeaters&#39;]<br>+                self._repeaters = json.load(f)[&#39;rptrs&#39;]<br>             except AttributeError:<br>                 raise errors.RadioError(<br>                     &quot;Unexpected response from %s&quot; % self.URL)<br></div></div>