[devscripts] 01/01: suspicious-source: Correct message when python3-magic isn't installed

James McCoy jamessan at debian.org
Sat Dec 7 00:12:02 UTC 2013


This is an automated email from the git hooks/post-receive script.

jamessan pushed a commit to branch master
in repository devscripts.

commit cb74395f34286cf8e2034ebd778274c6bf71704c
Author: James McCoy <jamessan at debian.org>
Date:   Fri Dec 6 19:11:33 2013 -0500

    suspicious-source: Correct message when python3-magic isn't installed
    
    Closes: #731553
    Signed-off-by: James McCoy <jamessan at debian.org>
---
 debian/changelog          | 2 ++
 scripts/suspicious-source | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index fe1b74e..3fc2585 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -3,6 +3,8 @@ devscripts (2.13.6) UNRELEASED; urgency=medium
   * chdist: Fix a [A-z] regex typo.
   * uscan: Properly handle a non-machine readable d/copyright file.  (Closes:
     #731537)
+  * suspicious-source: Correct message when python3-magic isn't installed.
+    (Closes: #731553)
 
  -- James McCoy <jamessan at debian.org>  Thu, 05 Dec 2013 22:47:37 -0500
 
diff --git a/scripts/suspicious-source b/scripts/suspicious-source
index 77ef98a..718aa00 100755
--- a/scripts/suspicious-source
+++ b/scripts/suspicious-source
@@ -23,7 +23,7 @@ from devscripts.logger import Logger
 try:
     import magic
 except ImportError:
-    Logger.error("Please install 'python-magic' in order to use this utility.")
+    Logger.error("Please install 'python3-magic' in order to use this utility.")
     sys.exit(1)
 
 DEFAULT_WHITELISTED_MIMETYPES = [

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/collab-maint/devscripts.git



More information about the devscripts-devel mailing list