summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
Diffstat (limited to 'Lib')
-rw-r--r--Lib/commands.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/commands.py b/Lib/commands.py
index b4e1d3c..287aa27 100644
--- a/Lib/commands.py
+++ b/Lib/commands.py
@@ -64,7 +64,7 @@ def getstatusoutput(cmd):
#
def mk2arg(head, x):
from warnings import warnpy3k
- warnpy3k("In 3.x, mk2arg is removed.")
+ warnpy3k("In 3.x, mk2arg has been removed.")
import os
return mkarg(os.path.join(head, x))
@@ -78,7 +78,7 @@ def mk2arg(head, x):
#
def mkarg(x):
from warnings import warnpy3k
- warnpy3k("in 3.x, mkarg is remove.")
+ warnpy3k("in 3.x, mkarg has been removed.")
if '\'' not in x:
return ' \'' + x + '\''
s = ' "'