Skip to content

Commit

Permalink
Merge pull request #315 from doronz88/bugfix/xonshrc
Browse files Browse the repository at this point in the history
xonshrc: fix system commands handling
  • Loading branch information
doronz88 authored Nov 19, 2023
2 parents fc7cd47 + cba3464 commit 8a0a8f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rpcclient/rpcclient/xonshrc.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ def _rpc_connect(self):
for cmd in ['wc', 'grep', 'egrep', 'sed', 'awk', 'print', 'yes', 'cat']:
executable = shutil.which(cmd)
if executable is not None:
self._register_arg_parse_alias(cmd, executable)
self._register_rpc_command(cmd, executable)

# -- rpc
self._register_arg_parse_alias('rpc-disconnect', self._rpc_disconnect)
Expand Down

0 comments on commit 8a0a8f9

Please sign in to comment.