From 139cf4fae48ec83727775fb93663e7eaceaa971f Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Wed, 26 Apr 2017 22:08:49 +0200 Subject: [PATCH] Update path (#15) --- hassio/const.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/hassio/const.py b/hassio/const.py index 059c94e55..f16c3b4c7 100644 --- a/hassio/const.py +++ b/hassio/const.py @@ -1,12 +1,12 @@ """Const file for HassIO.""" HASSIO_VERSION = '0.16' -URL_HASSIO_VERSION = \ - 'https://raw.githubusercontent.com/pvizeli/hassio/master/version.json' -URL_HASSIO_VERSION_BETA = \ - 'https://raw.githubusercontent.com/pvizeli/hassio/master/version_beta.json' +URL_HASSIO_VERSION = ('https://raw.githubusercontent.com/home-assistant/' + 'hassio/master/version.json') +URL_HASSIO_VERSION_BETA = ('https://raw.githubusercontent.com/home-assistant/' + 'hassio/master/version_beta.json') -URL_HASSIO_ADDONS = 'https://github.com/pvizeli/hassio-addons' +URL_HASSIO_ADDONS = 'https://github.com/home-assistant/hassio-addons' DOCKER_REPO = "pvizeli"