Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIgnacio ROdríguez <ignaciorodriguez@sugarlabs.org>2013-05-14 16:22:19 (GMT)
committer Ignacio ROdríguez <ignaciorodriguez@sugarlabs.org>2013-05-14 16:22:19 (GMT)
commit9da92ad4e8085fa503726b64524ff54be5fe6cb3 (patch)
treed254cd6b30503fdeda8d0cf1cf8d224b6d59e7c1
parent5aa2fb1076e91df316a99d1aa11ea0d3e85c5886 (diff)
Now stop button work.v8
-rwxr-xr-xactivity/activity.info2
-rwxr-xr-xvnclauncher.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/activity/activity.info b/activity/activity.info
index b595144..4341868 100755
--- a/activity/activity.info
+++ b/activity/activity.info
@@ -1,6 +1,6 @@
[Activity]
name = VncLauncher
-activity_version = 7
+activity_version = 8
bundle_id = org.laptop.VncLauncher
exec = sugar-activity vnclauncher.VncLauncherActivity
icon = activity-vnclauncher
diff --git a/vnclauncher.py b/vnclauncher.py
index 7e99d47..5eefe09 100755
--- a/vnclauncher.py
+++ b/vnclauncher.py
@@ -108,7 +108,7 @@ class VncLauncherActivity(activity.Activity):
def stopVNC(self,button):
- cmd = "kill" + commands.getoutput('pidof x11vnc')
+ cmd = "kill " + commands.getoutput('pidof x11vnc')
self._vte.fork_command(cmd)
def connectVNC(self,button):