summaryrefslogtreecommitdiff
path: root/fetcher.go
diff options
context:
space:
mode:
authorChristian Pointner <equinox@helsinki.at>2015-12-07 16:16:40 (GMT)
committerChristian Pointner <equinox@helsinki.at>2015-12-08 00:34:53 (GMT)
commit02b42d386668926464fd166c6a2dde51246fd9df (patch)
treee89054358e5a65aa4021a6f2f0708e315434c06c /fetcher.go
parenta1242a443a5c72ea3b851b8d886a82e0b9d42cf9 (diff)
moved DB into seperate module
Diffstat (limited to 'fetcher.go')
-rw-r--r--fetcher.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/fetcher.go b/fetcher.go
index ead9f5f..1a5801b 100644
--- a/fetcher.go
+++ b/fetcher.go
@@ -26,9 +26,9 @@ package rhimport
func FetchFile(ctx *ImportContext) (err error) {
- // TODO: fetch file from ctx.SourceUri and put it into ctx.Conf.TempDir
+ // TODO: fetch file from ctx.SourceUri and put it into ctx.Config.TempDir
- ctx.SourceFile = ctx.Conf.TempDir + "/source-file.ogg"
+ ctx.SourceFile = ctx.Config.TempDir + "/source-file.ogg"
ctx.DeleteSourceFile = true
return
}