aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--dbus/dbus.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/dbus/dbus.go b/dbus/dbus.go
index 22cd35a8..9c99a703 100644
--- a/dbus/dbus.go
+++ b/dbus/dbus.go
@@ -2,6 +2,7 @@ package dbus
import (
"errors"
+ "fmt"
"io"
"os"
"os/exec"
@@ -43,7 +44,7 @@ func (p *Proxy) String() string {
}
if p.seal != nil {
- return p.seal.(helper.Args).String()
+ return p.seal.(fmt.Stringer).String()
}
return "(unsealed dbus proxy)"