MCPcopy Index your code
hub / github.com/clintecker/python-googleanalytics / quote

Function quote

bootstrap.py:40–44  ·  view source on GitHub ↗
(c)

Source from the content-addressed store, hash-verified

38
39if sys.platform == 'win32':
40 def quote(c):
41 if ' ' in c:
42 return '"%s"' % c # work around spawn lamosity on windows
43 else:
44 return c
45else:
46 def quote (c):
47 return c

Callers 1

bootstrap.pyFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected