Skip to content

Commit

Permalink
MacOS = darwin.... cannot use win in sys.platform to distinguish wind…
Browse files Browse the repository at this point in the history
…ows...

Signed-off-by: Christian Tremblay <christian.tremblay@servisys.com>
  • Loading branch information
ChristianTremblay committed Apr 26, 2016
1 parent 9cf9bdd commit 42359c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BAC0/bokeh/BokehServer.py
Expand Up @@ -41,7 +41,7 @@ def process(self):
self.task()

def startServer(self):
if 'win' in sys.platform:
if 'win32' in sys.platform:
commandToExecute = "bokeh.bat serve"
else:
commandToExecute = "bokeh serve"
Expand Down

0 comments on commit 42359c7

Please sign in to comment.