diff options
author | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2004-07-27 01:14:50 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2004-07-27 01:14:50 +0000 |
commit | b224e4793f45d3f0f0c19bc7aa31670340171ec7 (patch) | |
tree | 143c88061b3cba4d5953d7dd3807eb619d5c49ea /urpm.pm | |
parent | b33ef8c35b3ad6dc27d6c9ee0921111082349cb4 (diff) | |
download | urpmi-b224e4793f45d3f0f0c19bc7aa31670340171ec7.tar urpmi-b224e4793f45d3f0f0c19bc7aa31670340171ec7.tar.gz urpmi-b224e4793f45d3f0f0c19bc7aa31670340171ec7.tar.bz2 urpmi-b224e4793f45d3f0f0c19bc7aa31670340171ec7.tar.xz urpmi-b224e4793f45d3f0f0c19bc7aa31670340171ec7.zip |
Fix grammar error in error message
Diffstat (limited to 'urpm.pm')
-rw-r--r-- | urpm.pm | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -618,7 +618,7 @@ sub add_medium { #- creating the medium info. if ($options{virtual}) { - $url =~ m|^file:/*(/[^/].*)/| or $urpm->{fatal}(1, N("virtual medium need to be local")); + $url =~ m|^file:/*(/[^/].*)/| or $urpm->{fatal}(1, N("virtual medium needs to be local")); $medium = { name => $name, url => $url, |