aboutsummaryrefslogtreecommitdiffstats
path: root/audio/exaile-devel/files
diff options
context:
space:
mode:
authorrm <rm@FreeBSD.org>2017-06-29 17:58:01 +0800
committerrm <rm@FreeBSD.org>2017-06-29 17:58:01 +0800
commit485c2a10d955fa7bd789fae4e232527412be1e50 (patch)
tree236421987668dc83b1f6134d4ea619d32081e156 /audio/exaile-devel/files
parentfb0343fd880634f79fb0b028ada18fd74d27ef3f (diff)
downloadfreebsd-ports-gnome-485c2a10d955fa7bd789fae4e232527412be1e50.tar.gz
freebsd-ports-gnome-485c2a10d955fa7bd789fae4e232527412be1e50.tar.zst
freebsd-ports-gnome-485c2a10d955fa7bd789fae4e232527412be1e50.zip
audio/exaile-devel: update to latest revision
Diffstat (limited to 'audio/exaile-devel/files')
-rw-r--r--audio/exaile-devel/files/patch-plugins_daapclient_____init____.py19
1 files changed, 0 insertions, 19 deletions
diff --git a/audio/exaile-devel/files/patch-plugins_daapclient_____init____.py b/audio/exaile-devel/files/patch-plugins_daapclient_____init____.py
deleted file mode 100644
index a17dcfa21bfe..000000000000
--- a/audio/exaile-devel/files/patch-plugins_daapclient_____init____.py
+++ /dev/null
@@ -1,19 +0,0 @@
-Fix SyntaxError with python3 (PEP 3113)
-
---- plugins/daapclient/__init__.py.orig 2016-08-14 05:19:15 UTC
-+++ plugins/daapclient/__init__.py
-@@ -307,12 +307,13 @@ class DaapManager:
-
- self.history = DaapHistory(5, menu=hmenu, callback=self.connect_share)
-
-- def connect_share(self, obj, (name, address, port, svc)):
-+ def connect_share(self, obj, args):
- '''
- This function is called when a user wants to connec to
- a DAAP share. It creates a new panel for the share, and
- requests a track list.
- '''
-+ name, address, port, svc = args
- conn = DaapConnection(name, address, port)
-
- conn.connect()