src/refresh-auth
changeset 211 0cd59649772c
parent 165 3606d60b07e5
child 217 32b431977bf9
--- a/src/refresh-auth	Thu Nov 12 11:19:36 2009 +0000
+++ b/src/refresh-auth	Fri Nov 13 12:26:08 2009 +0000
@@ -8,7 +8,7 @@
 
 import sys
 import os
-from mercurialserver import refreshauth, paths
+from mercurialserver import refreshauth, config
 
 if len(sys.argv) != 1:
     sys.stderr.write("refresh-auth: must be called with no arguments (%s)\n" % sys.argv)
@@ -16,9 +16,9 @@
 
 # To protect the authorized_keys file for innocent users, you have to have
 # a ~/.mercurial-server file to run this.
-if not paths.configExists():
+if not config.configExists():
     print >>sys.stderr, "Must be run as the 'hg' user"
     sys.exit(-1)
 
-paths.setExePath()
+config.setExePath()
 refreshauth.refreshAuth()