From cc9fb3ff410acb894fa4b359f9ae38e77994cc19 Mon Sep 17 00:00:00 2001 From: Jack Date: Thu, 18 Feb 2016 20:45:16 -0500 Subject: [PATCH] fix icon path --- lbrynet/lbrynet_daemon/LBRYDaemon.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lbrynet/lbrynet_daemon/LBRYDaemon.py b/lbrynet/lbrynet_daemon/LBRYDaemon.py index 8fd222ec9..2e1264e15 100644 --- a/lbrynet/lbrynet_daemon/LBRYDaemon.py +++ b/lbrynet/lbrynet_daemon/LBRYDaemon.py @@ -1021,7 +1021,7 @@ class LBRYDaemon(xmlrpc.XMLRPC): class DaemonStatusBarApp(rumps.App): def __init__(self): - super(DaemonStatusBarApp, self).__init__("LBRYnet", icon=os.path.join(os.path.expanduser("~"), "Downloads/lbryio/lbry.io/web/img/fav/apple-touch-icon.png"), quit_button=None) + super(DaemonStatusBarApp, self).__init__("LBRYnet", icon=os.path.join(os.path.expanduser("~"), "Downloads/lbryio/web/img/fav/apple-touch-icon.png"), quit_button=None) self.menu = ["Quit"] # shut down existing instance of lbrynet-daemon if there is one try: @@ -1063,7 +1063,7 @@ def main(): daemon.setup() reactor.listenTCP(7080, server.Site(daemon)) reactor.run() - + if __name__ == '__main__': main()