aboutsummaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-01-10 14:35:20 +0100
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-01-10 14:35:20 +0100
commit342468e463c351640a1865070a65d9f57720d361 (patch)
treefd1c783614b73d72e92d24f2a269a7d6859fe62c /source
parentImprovements to the /management page (title hierarchy + password input with h... (diff)
downloadnewspipe-342468e463c351640a1865070a65d9f57720d361.tar.gz
newspipe-342468e463c351640a1865070a65d9f57720d361.tar.bz2
newspipe-342468e463c351640a1865070a65d9f57720d361.zip
Updated header information for auth.py.
Diffstat (limited to 'source')
-rwxr-xr-xsource/auth.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/source/auth.py b/source/auth.py
index bfaf1b19..33fafcda 100755
--- a/source/auth.py
+++ b/source/auth.py
@@ -20,9 +20,9 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>
__author__ = "Cedric Bonhomme"
-__version__ = "$Revision: 0.1 $"
+__version__ = "$Revision: 0.2 $"
__date__ = "$Date: 2012/10/12 $"
-__revision__ = "$Date: 2012/10/12 $"
+__revision__ = "$Date: 2013/01/10 $"
__copyright__ = "Copyright (c) Cedric Bonhomme"
__license__ = "GPLv3"
@@ -49,7 +49,6 @@ class excel_french(csv.Dialect):
csv.register_dialect('excel_french', excel_french)
-
def change_password(username, new_password, password_file='./var/password'):
"""
Change the password corresponding to username.
bgstack15