diff options
author | mkaay <mkaay@mkaay.de> | 2009-12-28 15:32:06 +0100 |
---|---|---|
committer | mkaay <mkaay@mkaay.de> | 2009-12-28 15:32:06 +0100 |
commit | ce2a8294b5aefe4497c88f24c817084868b8b1eb (patch) | |
tree | cf52569c6f52a12a4a2c5d5a6358aea797697ec5 /module/Plugin.py | |
parent | DLC Error Log (diff) | |
download | pyload-ce2a8294b5aefe4497c88f24c817084868b8b1eb.tar.xz |
gui now stable
Diffstat (limited to 'module/Plugin.py')
-rw-r--r-- | module/Plugin.py | 37 |
1 files changed, 18 insertions, 19 deletions
diff --git a/module/Plugin.py b/module/Plugin.py index 9390cbe07..f3830595d 100644 --- a/module/Plugin.py +++ b/module/Plugin.py @@ -1,23 +1,22 @@ -#!/usr/bin/env python # -*- coding: utf-8 -*- -# -#Copyright (C) 2009 kingzero, RaNaN -# -#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 <http://www.gnu.org/licenses/>. -# -### -import ConfigParser + +""" + 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 <http://www.gnu.org/licenses/>. + + @author: RaNaN, spoob, mkaay +""" + import logging import re from os.path import exists, join |