summaryrefslogtreecommitdiffstats
path: root/pym/_emerge
diff options
context:
space:
mode:
Diffstat (limited to 'pym/_emerge')
-rw-r--r--pym/_emerge/main.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/_emerge/main.py b/pym/_emerge/main.py
index b19c96a77..b4cd7c5ff 100644
--- a/pym/_emerge/main.py
+++ b/pym/_emerge/main.py
@@ -993,7 +993,7 @@ def check_procfs():
if platform.system() not in ("Linux",) or \
os.path.ismount(procfs_path):
return os.EX_OK
- msg = "It sees that %s is not mounted. You have been warned." % procfs_path
+ msg = "It seems that %s is not mounted. You have been warned." % procfs_path
writemsg_level("".join("!!! %s\n" % l for l in textwrap.wrap(msg, 70)),
level=logging.ERROR, noiselevel=-1)
return 1