From 472a688e6ecb508be6f37ca8f821df8c986dff7d Mon Sep 17 00:00:00 2001 From: TheNain38 Date: Mon, 26 Oct 2015 01:03:37 +0100 Subject: [PATCH] Don't left spaces at the end of file --- plugins/Trayicon/TrayiconPlugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Trayicon/TrayiconPlugin.py b/plugins/Trayicon/TrayiconPlugin.py index fb8ac3ef..2d71c55a 100644 --- a/plugins/Trayicon/TrayiconPlugin.py +++ b/plugins/Trayicon/TrayiconPlugin.py @@ -119,7 +119,7 @@ class ActionsPlugin(object): # Dont open browser on autorun cmd = cmd.replace("start.py", "zeronet.py").replace('"--open_browser"', "").replace('"default_browser"', "").strip() - return "@echo off\ncd /D %s \n%s" % (os.getcwd(), cmd) + return "@echo off\ncd /D %s\n%s" % (os.getcwd(), cmd) def isAutorunEnabled(self): path = self.getAutorunPath()