Hi,

Stephan Schindel wrote on 15.01.2013 10:32:
Hey :),

gPodder suddenly does not update my subscriptions anymore. When I start
gPodder in the terminal I can see that gPodder tries to start the
application 'ip' to get information about the used network interface.
However, this application does not exist on my system (anymore?).

# /usr/local/lib/python2.7/site-packages/gpodder/util.py line 1653
process = subprocess.Popen(['ip', 'link'], stdout=subprocess.PIPE)

% ip
ip: Command not found.

Cheers,
Stephan

This is changed in 3.4.0 and I definitely overlooked that. Would you please try the patch attached against your util.py and let me know if that works?

--
Regards,
Ruslan

Tinderboxing kills... the drives.
--- util.py.orig	2012-12-22 15:53:19.000000000 +0400
+++ util.py	2013-01-15 11:24:47.000000000 +0400
@@ -1682,7 +1682,7 @@
         if gpodder.ui.win32:
             # FIXME: Implement for Windows
             return True
-        elif gpodder.ui.osx:
+        elif gpodder.ui.osx or 'freebsd' in sys.platform:
             return len(list(osx_get_active_interfaces())) > 0
             return True
         else:
_______________________________________________
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"

Reply via email to