diff options
author | Olivier Blin <oblin@mandriva.com> | 2007-02-09 19:39:05 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.com> | 2007-02-09 19:39:05 +0000 |
commit | 083d66074ba852235f072c3af00b9df5f8f5cae9 (patch) | |
tree | f1f454b706f770d4cf1c27ba0c9d0652e580f69d /lib | |
parent | 0d815cfbf95f586aa369c7554f0430cfd4251ba3 (diff) | |
download | mga-youri-submit-083d66074ba852235f072c3af00b9df5f8f5cae9.tar mga-youri-submit-083d66074ba852235f072c3af00b9df5f8f5cae9.tar.gz mga-youri-submit-083d66074ba852235f072c3af00b9df5f8f5cae9.tar.bz2 mga-youri-submit-083d66074ba852235f072c3af00b9df5f8f5cae9.tar.xz mga-youri-submit-083d66074ba852235f072c3af00b9df5f8f5cae9.zip |
add section in acl error message
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Youri/Submit/Check/ACL.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Youri/Submit/Check/ACL.pm b/lib/Youri/Submit/Check/ACL.pm index 0f63eb9..34bf48a 100644 --- a/lib/Youri/Submit/Check/ACL.pm +++ b/lib/Youri/Submit/Check/ACL.pm @@ -42,7 +42,7 @@ sub run { if ($user =~ /$users/) { return } else { - return "$user is not authorized to upload packages belonging to $srpm (authorized persons: " . join(', ', split '\|', $users) . ")"; + return "$user is not authorized to upload packages belonging to $srpm in section $section (authorized persons: " . join(', ', split '\|', $users) . ")"; } } } |