Description: little format error
Author: Xavier Guimard <yadd@debian.org>
Forwarded: https://github.com/LeoIannacone/npm2deb/pull/143
Last-Update: 2019-03-11

--- a/npm2deb/__init__.py
+++ b/npm2deb/__init__.py
@@ -428,7 +428,7 @@
         utils.debug(1, "downloading %s@%s tarball from npm registry" % (self.name, self.version))
         info = _getstatusoutput('npm pack "%s@%s"' % (self.name, self.version))
         if info[0] is not 0:
-            exception = "Error downloading package %s@s\n" % (self.name, self.version)
+            exception = "Error downloading package %s@%s\n" % (self.name, self.version)
             exception += info[1]
             raise ValueError(exception)
         tarball_file = info[1].split('\n')[-1]
