Skip to content

Commit 7fc38c4

Browse files
committed
Address issue for shell expansion in ST2.
1 parent 9f72bca commit 7fc38c4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

advanced_new_file/commands/command_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ def split_path(self, path=""):
126126
try:
127127
root, path = self.platform.split(path)
128128
if self.settings.get(SHELL_INPUT_SETTING, False) and len(path) > 0:
129-
split_path = shlex.split(path)
129+
split_path = shlex.split(str(path))
130130
path = " ".join(split_path)
131131
# Parse if alias
132132
if TOP_LEVEL_SPLIT_CHAR in path and root is None:

0 commit comments

Comments
 (0)