<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<atom:link href="https://dev1galaxy.org/extern.php?action=feed&amp;tid=2169&amp;type=rss" rel="self" type="application/rss+xml" />
		<title><![CDATA[Dev1 Galaxy Forum / I can not run software-properties-kde]]></title>
		<link>https://dev1galaxy.org/viewtopic.php?id=2169</link>
		<description><![CDATA[The most recent posts in I can not run software-properties-kde.]]></description>
		<lastBuildDate>Sat, 25 Aug 2018 21:06:44 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[Re: I can not run software-properties-kde]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=11508#p11508</link>
			<description><![CDATA[<p>I discovered the bug concerns Devuan 1 too.</p><p>So I suggest this updated script to fix it :</p><div class="codebox"><pre class="vscroll"><code>#!/bin/sh
## Bug fix for Devuan1 and Devuan2
## https://dev1galaxy.org/viewtopic.php?pid=11505

if test &quot;$USER&quot; != &quot;root&quot;; then
  echo &quot;This is a bug fix for Devuan1 and Devuan2.&quot;
  echo &quot;See: https://dev1galaxy.org/viewtopic.php?pid=11505&quot;
  echo &quot;root user required!&quot;
  exit 1
fi

test -d /usr/share/python-apt/templates || mkdir -pm 755 /usr/share/python-apt/templates

cat &gt; /usr/share/python-apt/templates/Devuan.info &lt;&lt; EOF
ChangelogURI: http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog

Suite: jessie
RepositoryType: deb
BaseURI: http://deb.devuan.org/merged
MatchURI: deb.devuan.org/merged
MirrorsFile: Devuan.mirrors
Description: Devuan 1.0 &#039;jessie&#039;
Component: main
CompDescription: Officially supported
Component: contrib
CompDescription: DFSG-compatible Software with Non-Free Dependencies
Component: non-free
CompDescription: Non-DFSG-compatible Software

Suite: jessie-updates
RepositoryType: deb
ParentSuite: jessie
Description: Recommended updates

Suite: jessie-security
RepositoryType: deb
ParentSuite: jessie
Description: Security updates

Suite: ascii
RepositoryType: deb
BaseURI: http://deb.devuan.org/merged
MatchURI: deb.devuan.org/merged
MirrorsFile: Devuan.mirrors
Description: Devuan 2.0 &#039;ascii&#039;
Component: main
CompDescription: Officially supported
Component: contrib
CompDescription: DFSG-compatible Software with Non-Free Dependencies
Component: non-free
CompDescription: Non-DFSG-compatible Software

Suite: ascii-updates
RepositoryType: deb
ParentSuite: ascii
Description: Recommended updates

Suite: ascii-security
RepositoryType: deb
ParentSuite: ascii
Description: Security updates
EOF

cat &gt; /usr/share/python-apt/templates/Devuan.mirrors &lt;&lt; EOF
#LOC:any
http://deb.devuan.org/merged
EOF

echo &quot;Bug fix is done.&quot;</code></pre></div>]]></description>
			<author><![CDATA[dummy@example.com (voomto)]]></author>
			<pubDate>Sat, 25 Aug 2018 21:06:44 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=11508#p11508</guid>
		</item>
		<item>
			<title><![CDATA[Re: I can not run software-properties-kde]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=11506#p11506</link>
			<description><![CDATA[<p>I have just found how to remove the the warning &quot;Failed to read mirror file&quot;. In the file Devuan.info, simply replace &quot;MirrorsFile: mirror_list.txt&quot; with &quot;MirrorsFile: Devuan.mirrors&quot;.</p><p>So my script python-apt-common_template_fix.sh should finally look like that:</p><div class="codebox"><pre class="vscroll"><code>#!/bin/sh
## Bug fix for Devuan2
## https://dev1galaxy.org/viewtopic.php?pid=11505

cat &gt; /usr/share/python-apt/templates/Devuan.info &lt;&lt; EOF
ChangelogURI: http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog

Suite: ascii
RepositoryType: deb
BaseURI: http://deb.devuan.org/merged
MatchURI: deb.devuan.org/merged
MirrorsFile: Devuan.mirrors
Description: Devuan 2.0 &#039;ascii&#039;
Component: main
CompDescription: Officially supported
Component: contrib
CompDescription: DFSG-compatible Software with Non-Free Dependencies
Component: non-free
CompDescription: Non-DFSG-compatible Software

Suite: ascii-updates
RepositoryType: deb
ParentSuite: ascii
Description: Recommended updates

Suite: ascii-security
RepositoryType: deb
ParentSuite: ascii
Description: Security updates
EOF

cat &gt; /usr/share/python-apt/templates/Devuan.mirrors &lt;&lt; EOF
#LOC:any
http://deb.devuan.org/merged
EOF</code></pre></div>]]></description>
			<author><![CDATA[dummy@example.com (voomto)]]></author>
			<pubDate>Sat, 25 Aug 2018 17:57:04 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=11506#p11506</guid>
		</item>
		<item>
			<title><![CDATA[Re: I can not run software-properties-kde]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=11505#p11505</link>
			<description><![CDATA[<p>Thanks fsmithred,<br />The test pass with a not blocking error related to UbuntuDrivers, both with software-properties-gtk and synaptic-pkexec.</p><p>I put your fix in a script python-apt-common_template_fix.sh and run it:</p><div class="codebox"><pre class="vscroll"><code>#!/bin/sh
cat &gt; /usr/share/python-apt/templates/Devuan.info &lt;&lt; EOF
ChangelogURI: http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog

Suite: ascii
RepositoryType: deb
BaseURI: http://deb.devuan.org/merged
MatchURI: deb.devuan.org/merged
MirrorsFile: mirror_list.txt
Description: Devuan 2.0 &#039;ascii&#039;
Component: main
CompDescription: Officially supported
Component: contrib
CompDescription: DFSG-compatible Software with Non-Free Dependencies
Component: non-free
CompDescription: Non-DFSG-compatible Software

Suite: ascii-updates
RepositoryType: deb
ParentSuite: ascii
Description: Recommended updates

Suite: ascii-security
RepositoryType: deb
ParentSuite: ascii
Description: Security updates
EOF

cat &gt; /usr/share/python-apt/templates/Devuan.mirrors &lt;&lt; EOF
#LOC:any
http://deb.devuan.org/merged
EOF</code></pre></div><p>Here are the terminal outputs:</p><div class="codebox"><pre><code>demo@fresh_installed_devuan2:~$ gksu software-properties-gtk
ERROR:root:Cannot import UbuntuDrivers: No module named &#039;UbuntuDrivers&#039;
WARNING: Failed to read mirror file

(software-properties-gtk:4999): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:154:27: The style property GtkButton:image-spacing is deprecated and shouldn&#039;t be used anymore. It will be removed in a future version

(software-properties-gtk:4999): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:155:26: The style property GtkButton:inner-border is deprecated and shouldn&#039;t be used anymore. It will be removed in a future version

(software-properties-gtk:4999): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:584:27: The style property GtkButton:image-spacing is deprecated and shouldn&#039;t be used anymore. It will be removed in a future version

(software-properties-gtk:4999): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:585:28: The style property GtkWidget:interior-focus is deprecated and shouldn&#039;t be used anymore. It will be removed in a future version

(software-properties-gtk:4999): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:586:28: The style property GtkButton:default-border is deprecated and shouldn&#039;t be used anymore. It will be removed in a future version

(software-properties-gtk:4999): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:587:26: The style property GtkButton:inner-border is deprecated and shouldn&#039;t be used anymore. It will be removed in a future version

(software-properties-gtk:4999): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:1344:25: The style property GtkRange:slider-width is deprecated and shouldn&#039;t be used anymore. It will be removed in a future version

(software-properties-gtk:4999): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:1345:25: The style property GtkRange:stepper-size is deprecated and shouldn&#039;t be used anymore. It will be removed in a future version

(software-properties-gtk:4999): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:1346:34: The style property GtkScrollbar:min-slider-length is deprecated and shouldn&#039;t be used anymore. It will be removed in a future version

(software-properties-gtk:4999): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:1347:28: The style property GtkRange:stepper-spacing is deprecated and shouldn&#039;t be used anymore. It will be removed in a future version

(software-properties-gtk:4999): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:1348:34: The style property GtkRange:trough-under-steppers is deprecated and shouldn&#039;t be used anymore. It will be removed in a future version</code></pre></div><div class="codebox"><pre><code>demo@fresh_installed_devuan2:~$ synaptic-pkexec
ERROR:root:Cannot import UbuntuDrivers: No module named &#039;UbuntuDrivers&#039;
WARNING: Failed to read mirror file

(software-properties-gtk:4825): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:154:27: The style property GtkButton:image-spacing is deprecated and shouldn&#039;t be used anymore. It will be removed in a future version

(software-properties-gtk:4825): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:155:26: The style property GtkButton:inner-border is deprecated and shouldn&#039;t be used anymore. It will be removed in a future version

(software-properties-gtk:4825): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:584:27: The style property GtkButton:image-spacing is deprecated and shouldn&#039;t be used anymore. It will be removed in a future version

(software-properties-gtk:4825): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:585:28: The style property GtkWidget:interior-focus is deprecated and shouldn&#039;t be used anymore. It will be removed in a future version

(software-properties-gtk:4825): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:586:28: The style property GtkButton:default-border is deprecated and shouldn&#039;t be used anymore. It will be removed in a future version

(software-properties-gtk:4825): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:587:26: The style property GtkButton:inner-border is deprecated and shouldn&#039;t be used anymore. It will be removed in a future version

(software-properties-gtk:4825): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:1344:25: The style property GtkRange:slider-width is deprecated and shouldn&#039;t be used anymore. It will be removed in a future version

(software-properties-gtk:4825): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:1345:25: The style property GtkRange:stepper-size is deprecated and shouldn&#039;t be used anymore. It will be removed in a future version

(software-properties-gtk:4825): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:1346:34: The style property GtkScrollbar:min-slider-length is deprecated and shouldn&#039;t be used anymore. It will be removed in a future version

(software-properties-gtk:4825): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:1347:28: The style property GtkRange:stepper-spacing is deprecated and shouldn&#039;t be used anymore. It will be removed in a future version

(software-properties-gtk:4825): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:1348:34: The style property GtkRange:trough-under-steppers is deprecated and shouldn&#039;t be used anymore. It will be removed in a future version</code></pre></div><p>To remove the warning &quot;Failed to read mirror file&quot;, I tried to add a trailing slash to <a href="http://deb.devuan.org/merged" rel="nofollow">http://deb.devuan.org/merged</a> in Devuan.mirrors, as I believe trailing slashes for sources.list are mentioned in Debian specs. But the warning still remains.<br />Whatever, I think the bug is fixed! Thanks!</p>]]></description>
			<author><![CDATA[dummy@example.com (voomto)]]></author>
			<pubDate>Sat, 25 Aug 2018 17:43:19 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=11505#p11505</guid>
		</item>
		<item>
			<title><![CDATA[Re: I can not run software-properties-kde]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=11501#p11501</link>
			<description><![CDATA[<p>The templates for the .info and .mirrors files are part of python-apt-common. Here are a couple of sample devuan files you can test. This is my best guess based on the existing files for debian, ubuntu, gnewsense and tanglu. I only included ascii. Both of these go in /usr/share/python-apt/templates/</p><p>Devuan.info</p><div class="codebox"><pre><code>ChangelogURI: http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog

Suite: ascii
RepositoryType: deb
BaseURI: http://deb.devuan.org/merged
MatchURI: deb.devuan.org/merged
MirrorsFile: mirror_list.txt
Description: Devuan 2.0 &#039;ascii&#039;
Component: main
CompDescription: Officially supported
Component: contrib
CompDescription: DFSG-compatible Software with Non-Free Dependencies
Component: non-free
CompDescription: Non-DFSG-compatible Software

Suite: ascii-updates
RepositoryType: deb
ParentSuite: ascii
Description: Recommended updates

Suite: ascii-security
RepositoryType: deb
ParentSuite: ascii
Description: Security updates</code></pre></div><p>Devuan.mirrors</p><div class="codebox"><pre><code>#LOC:any
http://deb.devuan.org/merged</code></pre></div>]]></description>
			<author><![CDATA[dummy@example.com (fsmithred)]]></author>
			<pubDate>Sat, 25 Aug 2018 13:03:32 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=11501#p11501</guid>
		</item>
		<item>
			<title><![CDATA[Re: I can not run software-properties-kde]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=11497#p11497</link>
			<description><![CDATA[<p>Thanks golinux for your answer.</p><p>I have made many and many checks:<br />The problem remains the same whatever stands is /etc/apt/sources.list and /etc/apt/sources.list.d/*<br />I have looked at the python scripts, purged and reinstalled packages, checked system files ownerships and permissions, and watched strace log of synaptic failing to open the repository settings. Nothing found.</p><p>Finally, I have searched on the web and found very much similar errors (also in the synaptic debian bug archive), but no real solution.</p><p>Someone to &quot;solve&quot; this issue on Linux Mint gave a <a href="https://jeffhoogland.blogspot.com/2010/06/howto-use-ubuntu-software-center-in.html" rel="nofollow">dirty hard code trick for a python script</a>.</p><p>Someone on the ubuntu forum <a href="https://ubuntuforums.org/showthread.php?t=2227121&amp;p=13037621#post13037621" rel="nofollow">gave a better solution</a> : simply add a file /usr/share/python-apt/templates/Devuan.info.</p><p>Can someone on this forum give a &quot;corporate content&quot; for /usr/share/python-apt/templates/Devuan.info?</p><p>To clarify, here is the bug I have first found that affect only some of my upgraded machines :<br />For unknown reason, synaptic fails to open the settings when <em>python3-software-properties</em> is installed on some of my upgraded devuan2 machines, but not on a freshly installed devuan2 from DVD.</p><p>Then I found that it concerns all the machines that have <em>software-properties-gtk</em> installed:<br />With that package, the error output within the terminal is the same, related to a missing file /usr/share/python-apt/templates/Devuan.info</p><p>So, everyone can reproduce that bug from a fresh installed devuan2 (mine just have virtualbox additions):</p><p>First install software-properties-gtk:</p><div class="codebox"><pre><code>root@fresh_installed_devuan2:~# apt-get -y install software-properties-gtk</code></pre></div><p>Then go crashing python module:</p><div class="codebox"><pre><code>demo@fresh_installed_devuan2:~$ gksu software-properties-gtk
ERROR:root:Cannot import UbuntuDrivers: No module named &#039;UbuntuDrivers&#039;
Traceback (most recent call last):
  File &quot;/usr/bin/software-properties-gtk&quot;, line 101, in &lt;module&gt;
    app = SoftwarePropertiesGtk(datadir=options.data_dir, options=options, file=file)
  File &quot;/usr/lib/python3/dist-packages/softwareproperties/gtk/SoftwarePropertiesGtk.py&quot;, line 109, in __init__
    SoftwareProperties.__init__(self, options=options, datadir=datadir)
  File &quot;/usr/lib/python3/dist-packages/softwareproperties/SoftwareProperties.py&quot;, line 109, in __init__
    self.reload_sourceslist()
  File &quot;/usr/lib/python3/dist-packages/softwareproperties/SoftwareProperties.py&quot;, line 599, in reload_sourceslist
    self.distro.get_sources(self.sourceslist)    
  File &quot;/usr/lib/python3/dist-packages/aptsources/distro.py&quot;, line 93, in get_sources
    (self.id, self.codename))
aptsources.distro.NoDistroTemplateException: Error: could not find a distribution template for Devuan/ascii</code></pre></div><div class="codebox"><pre><code>demo@fresh_installed_devuan2:~$ synaptic-pkexec 
ERROR:root:Cannot import UbuntuDrivers: No module named &#039;UbuntuDrivers&#039;
Traceback (most recent call last):
  File &quot;/usr/bin/software-properties-gtk&quot;, line 101, in &lt;module&gt;
    app = SoftwarePropertiesGtk(datadir=options.data_dir, options=options, file=file)
  File &quot;/usr/lib/python3/dist-packages/softwareproperties/gtk/SoftwarePropertiesGtk.py&quot;, line 109, in __init__
    SoftwareProperties.__init__(self, options=options, datadir=datadir)
  File &quot;/usr/lib/python3/dist-packages/softwareproperties/SoftwareProperties.py&quot;, line 109, in __init__
    self.reload_sourceslist()
  File &quot;/usr/lib/python3/dist-packages/softwareproperties/SoftwareProperties.py&quot;, line 599, in reload_sourceslist
    self.distro.get_sources(self.sourceslist)    
  File &quot;/usr/lib/python3/dist-packages/aptsources/distro.py&quot;, line 93, in get_sources
    (self.id, self.codename))
aptsources.distro.NoDistroTemplateException: Error: could not find a distribution template for Devuan/ascii</code></pre></div><p>I think this can be solved as easy as creating a good file /usr/share/python-apt/templates/Devuan.info (provided for instance by a postinst script of a package file depending on python-apt-common).</p>]]></description>
			<author><![CDATA[dummy@example.com (voomto)]]></author>
			<pubDate>Sat, 25 Aug 2018 07:46:16 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=11497#p11497</guid>
		</item>
		<item>
			<title><![CDATA[Re: I can not run software-properties-kde]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=11478#p11478</link>
			<description><![CDATA[<p>Those packages are available in all Devuan releases.</p><p><a href="https://pkginfo.devuan.org/cgi-bin/d1pkgweb-query?search=software-properties-kde&amp;release=any" rel="nofollow">https://pkginfo.devuan.org/cgi-bin/d1pk … elease=any</a><br /><a href="https://pkginfo.devuan.org/cgi-bin/d1pkgweb-query?search=software-properties-gtk&amp;release=any" rel="nofollow">https://pkginfo.devuan.org/cgi-bin/d1pk … elease=any</a></p><p>This error may be from a misconfigured sources.list.&#160; &#160; Please check that it aligns with the options recommended here:<br /><a href="https://devuan.org/os/etc/apt/sources.list" rel="nofollow">https://devuan.org/os/etc/apt/sources.list</a></p>]]></description>
			<author><![CDATA[dummy@example.com (golinux)]]></author>
			<pubDate>Fri, 24 Aug 2018 00:14:03 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=11478#p11478</guid>
		</item>
		<item>
			<title><![CDATA[Re: I can not run software-properties-kde]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=11476#p11476</link>
			<description><![CDATA[<p>Hi cynwulf!</p><p>I have just detected the script /usr/lib/python3/dist-packages/softwareproperties/SoftwareProperties.py is not really compatible with Devuan2, and prevents the user to access the repository settings from synaptic with the same error you have pointed:</p><div class="codebox"><pre><code>user@devuan2:~$ synaptic-pkexec 
ERROR:root:Cannot import UbuntuDrivers: No module named &#039;UbuntuDrivers&#039;
Traceback (most recent call last):
  File &quot;/usr/bin/software-properties-gtk&quot;, line 101, in &lt;module&gt;
    app = SoftwarePropertiesGtk(datadir=options.data_dir, options=options, file=file)
  File &quot;/usr/lib/python3/dist-packages/softwareproperties/gtk/SoftwarePropertiesGtk.py&quot;, line 109, in __init__
    SoftwareProperties.__init__(self, options=options, datadir=datadir)
  File &quot;/usr/lib/python3/dist-packages/softwareproperties/SoftwareProperties.py&quot;, line 109, in __init__
    self.reload_sourceslist()
  File &quot;/usr/lib/python3/dist-packages/softwareproperties/SoftwareProperties.py&quot;, line 599, in reload_sourceslist
    self.distro.get_sources(self.sourceslist)    
  File &quot;/usr/lib/python3/dist-packages/aptsources/distro.py&quot;, line 93, in get_sources
    (self.id, self.codename))
aptsources.distro.NoDistroTemplateException: Error: could not find a distribution template for Devuan/ascii</code></pre></div><p>With no bug fix at the moment, the workaround is to remove the package python3-software-properties.</p><p>Hope this can help.</p>]]></description>
			<author><![CDATA[dummy@example.com (voomto)]]></author>
			<pubDate>Thu, 23 Aug 2018 23:58:07 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=11476#p11476</guid>
		</item>
		<item>
			<title><![CDATA[Re: I can not run software-properties-kde]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=10232#p10232</link>
			<description><![CDATA[<p>That&#039;s not a good method of running a graphical programme.</p><p>Can you try the same again but run it with kdesu(1) and see if the same error occurs.</p>]]></description>
			<author><![CDATA[dummy@example.com (cynwulf)]]></author>
			<pubDate>Tue, 19 Jun 2018 08:18:10 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=10232#p10232</guid>
		</item>
		<item>
			<title><![CDATA[I can not run software-properties-kde]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=10228#p10228</link>
			<description><![CDATA[<p>Hello everyone, I try to run software-properties-kde and the following error messages appear, any ideas?</p><div class="codebox"><pre><code>root@ZBook:/home/cosque# software-properties-kde
Traceback (most recent call last):
  File &quot;/usr/bin/software-properties-kde&quot;, line 148, in &lt;module&gt;
    app = SoftwarePropertiesKDE(datadir=data_dir, options=options, file=afile, attachWinID=attachWinID)
  File &quot;/usr/lib/python3/dist-packages/softwareproperties/kde/SoftwarePropertiesKDE.py&quot;, line 65, in __init__
    SoftwareProperties.__init__(self, options=options, datadir=datadir)
  File &quot;/usr/lib/python3/dist-packages/softwareproperties/SoftwareProperties.py&quot;, line 109, in __init__
    self.reload_sourceslist()
  File &quot;/usr/lib/python3/dist-packages/softwareproperties/SoftwareProperties.py&quot;, line 599, in reload_sourceslist
    self.distro.get_sources(self.sourceslist)    
  File &quot;/usr/lib/python3/dist-packages/aptsources/distro.py&quot;, line 93, in get_sources
    (self.id, self.codename))
aptsources.distro.NoDistroTemplateException: Error: could not find a distribution template for Devuan/ascii</code></pre></div>]]></description>
			<author><![CDATA[dummy@example.com (Cosque)]]></author>
			<pubDate>Tue, 19 Jun 2018 05:20:48 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=10228#p10228</guid>
		</item>
	</channel>
</rss>
