From 3d0f1d93370802e24d41f3f916ca1c42a1213521 Mon Sep 17 00:00:00 2001 From: Kevin Date: Sat, 13 Jun 2020 17:50:37 -0500 Subject: [PATCH] fix import format in sitecreator init --- src/httpapi/onionrsitesapi/__init__.py | 34 +++++++++++++------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/src/httpapi/onionrsitesapi/__init__.py b/src/httpapi/onionrsitesapi/__init__.py index f369c475..a00fb39d 100644 --- a/src/httpapi/onionrsitesapi/__init__.py +++ b/src/httpapi/onionrsitesapi/__init__.py @@ -1,21 +1,6 @@ -""" - Onionr - Private P2P Communication +"""Onionr - Private P2P Communication. - view and interact with onionr sites -""" -""" - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . +view and interact with onionr sites """ import base64 import binascii @@ -31,6 +16,21 @@ from onionrutils import stringvalidators from utils import safezip from onionrutils import mnemonickeys from . import sitefiles +""" + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . +""" + site_api = Blueprint('siteapi', __name__)