diff options
Diffstat (limited to 'lib/network')
-rw-r--r-- | lib/network/connection.pm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/network/connection.pm b/lib/network/connection.pm index 0088ede..a641691 100644 --- a/lib/network/connection.pm +++ b/lib/network/connection.pm @@ -66,7 +66,9 @@ sub new { sub get_description { my ($self) = @_; - $self->{device}{description}; + my $description = $self->{device}{description}; + $description =~ s/\|/ /g; + $description; } sub get_driver { |