uwindsor: tweaks to eres import
authorgfawcett <gfawcett@6d9bc8c9-1ec2-4278-b937-99fde70a366f>
Sun, 9 Jan 2011 20:44:03 +0000 (20:44 +0000)
committergfawcett <gfawcett@6d9bc8c9-1ec2-4278-b937-99fde70a366f>
Sun, 9 Jan 2011 20:44:03 +0000 (20:44 +0000)
git-svn-id: svn://svn.open-ils.org/ILS-Contrib/servres/trunk@1175 6d9bc8c9-1ec2-4278-b937-99fde70a366f

conifer/uwindsor_migration/eres-into-syrup.py

index d789cc1..731b1f0 100644 (file)
@@ -29,7 +29,9 @@ known_profs = dict([
         ("Samson","psamson"),
         ("Dienesch","rdienesc"),
         ("Orsini","sorsini"),
-        ("Yun","yshhsy"),])
+        ("Yun","yshhsy"),
+        ("Ku","janeku"),
+        ])
 
 def ensure_user(username):
     user, created = User.objects.get_or_create(username=username)
@@ -72,7 +74,7 @@ for course in COURSES:
         d = m.data.copy()
 
         if 'author2' in d:
-            d['author'] = '%s;%s' % (d['author'], d['author2'])
+            d['author'] = '%s; %s' % (d['author'], d['author2'])
 
         for key in ['_path', 'author2', 'course', 'datafile', 'filename', 'instructor', 
                     'localid', 'term', 'type']: