Skip to content

Commit

Permalink
Merge pull request #41 from philips/use-new-dbus
Browse files Browse the repository at this point in the history
fix(dbus): use github.com/godbus/dbus
  • Loading branch information
philips committed Mar 27, 2014
2 parents 4fbc506 + e235feb commit 4c14ed3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dbus/dbus.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import (
"strings"
"sync"

"github.com/guelfey/go.dbus"
"github.com/godbus/dbus"
)

const signalBuffer = 100
Expand Down
2 changes: 1 addition & 1 deletion dbus/methods.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ package dbus

import (
"errors"
"github.com/guelfey/go.dbus"
"github.com/godbus/dbus"
)

func (c *Conn) initJobs() {
Expand Down
2 changes: 1 addition & 1 deletion dbus/properties.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ limitations under the License.
package dbus

import (
"github.com/guelfey/go.dbus"
"github.com/godbus/dbus"
)

// From the systemd docs:
Expand Down
2 changes: 1 addition & 1 deletion dbus/subscription.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
"errors"
"time"

"github.com/guelfey/go.dbus"
"github.com/godbus/dbus"
)

const (
Expand Down

0 comments on commit 4c14ed3

Please sign in to comment.