aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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