diff hg_delta_editor.py @ 317:5dc8fee7fc96

Less import *
author Augie Fackler <durin42@gmail.com>
date Sun, 03 May 2009 21:53:51 -0500
parents c3c647aff97c
children b6c6d32c8ef1 33736e2e25f0
line wrap: on
line diff
--- a/hg_delta_editor.py
+++ b/hg_delta_editor.py
@@ -16,7 +16,7 @@ from svn import core
 
 import svnexternals
 import util
-from maps import *
+import maps
 
 def pickle_atomic(data, file_path, dir=None):
     """pickle some data to a path atomically.
@@ -125,7 +125,7 @@ class HgChangeReceiver(delta.Editor):
         self.tag_locations.reverse()
 
         self.clear_current_info()
-        self.authors = AuthorMap(self.ui, self.authors_file,
+        self.authors = maps.AuthorMap(self.ui, self.authors_file,
                                  defaulthost=author_host)
         if authors: self.authors.load(authors)