From 2564564601ec5fb1696e4db9492a39af9dbbbb84 Mon Sep 17 00:00:00 2001 From: David Gillies Date: Tue, 9 Dec 2014 15:57:26 +1100 Subject: [PATCH] Typo in an error message fix --- deb/import.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deb/import.go b/deb/import.go index 5a9c102a..2039288a 100644 --- a/deb/import.go +++ b/deb/import.go @@ -39,7 +39,7 @@ func CollectPackageFiles(locations []string, reporter aptly.ResultReporter) (pac strings.HasSuffix(info.Name(), ".dsc") { packageFiles = append(packageFiles, location) } else { - reporter.Warning("Unknown file extenstion: %s", location) + reporter.Warning("Unknown file extension: %s", location) failedFiles = append(failedFiles, location) continue }