Skip to content

Commit df85f46

Browse files
committed
None is not allowed
1 parent 5d2ac30 commit df85f46

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compas/rpc/proxy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ def _proxy(self, *args, **kwargs):
409409
# this counts as output
410410
# it should be sent as part of RPC communication
411411
try:
412-
ostring = self._function(istring, self._path)
412+
ostring = self._function(istring, self._path or '')
413413
except Exception:
414414
# not clear what the point of this is
415415
# self.stop_server()

0 commit comments

Comments
 (0)