]> git.decadent.org.uk Git - dak.git/blobdiff - daklib/upload.py
Fix typo in error message.
[dak.git] / daklib / upload.py
index 76939bd7719e851f3323e39190e56a8cd3fe6430..8ab532c23eef1b5825e48e08383580ff389e370f 100644 (file)
@@ -23,6 +23,7 @@ It provides methods to access the included binary and source packages.
 
 import apt_inst
 import apt_pkg
+import errno
 import os
 import re
 
@@ -53,7 +54,7 @@ class InvalidHashException(UploadException):
                 "According to the control file the {0} hash should be {2},\n"
                 "but {1} has {3}.\n"
                 "\n"
-                "If you did not include {1} in you upload, a different version\n"
+                "If you did not include {1} in your upload, a different version\n"
                 "might already be known to the archive software.") \
                 .format(self.hash_name, self.filename, self.expected, self.actual)