aboutsummaryrefslogtreecommitdiff
path: root/cmd/btshow/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/btshow/main.go')
-rw-r--r--cmd/btshow/main.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/btshow/main.go b/cmd/btshow/main.go
index 1004972..cf27ead 100644
--- a/cmd/btshow/main.go
+++ b/cmd/btshow/main.go
@@ -5,14 +5,14 @@ import (
"log"
"os"
- "dim13.org/btget/bt"
+ "dim13.org/btget/meta"
)
func main() {
if len(os.Args) != 2 {
log.Fatal("usage: ", os.Args[0], " <torrent>")
}
- tor, err := bt.Open(os.Args[1])
+ tor, err := meta.Open(os.Args[1])
if err != nil {
log.Fatal(err)
}