We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f72bca commit 7fc38c4Copy full SHA for 7fc38c4
1 file changed
advanced_new_file/commands/command_base.py
@@ -126,7 +126,7 @@ def split_path(self, path=""):
126
try:
127
root, path = self.platform.split(path)
128
if self.settings.get(SHELL_INPUT_SETTING, False) and len(path) > 0:
129
- split_path = shlex.split(path)
+ split_path = shlex.split(str(path))
130
path = " ".join(split_path)
131
# Parse if alias
132
if TOP_LEVEL_SPLIT_CHAR in path and root is None:
0 commit comments