mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 08:24:40 +01:00
aliases: Fix typo in 'source' alias
This commit is contained in:
parent
3ee01444a9
commit
1b7892186a
1 changed files with 1 additions and 1 deletions
|
@ -560,7 +560,7 @@ def source_alias(args, stdin=None):
|
|||
print("source: {}: No such file".format(fname), file=sys.stderr)
|
||||
if i == 0:
|
||||
raise RuntimeError(
|
||||
"must source at least one file, " + fname + "does not exist."
|
||||
"must source at least one file, " + fname + " does not exist."
|
||||
)
|
||||
break
|
||||
_, fext = os.path.splitext(fpath)
|
||||
|
|
Loading…
Add table
Reference in a new issue