diff options
Diffstat (limited to 'perl-install/printer/detect.pm')
-rw-r--r-- | perl-install/printer/detect.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/printer/detect.pm b/perl-install/printer/detect.pm index 0f7537a2f..40842cb94 100644 --- a/perl-install/printer/detect.pm +++ b/perl-install/printer/detect.pm @@ -126,7 +126,8 @@ sub whatUsbport() { } # Was there a manufacturer and a model in the string? if ($manufacturer eq "" || $model eq "") { - next; + $manufacturer = ""; + $model = N("Unknown Model"); } # No description field? Make one out of manufacturer and model. if ($description eq "") { |