This patch fixes the above error.
--- google_appengine/google/appengine/tools/bulkloader.py 2010-04-23
18:33:09.000000000 +0100
+++ google_appengine_patched/google/appengine/tools/bulkloader.py
2010-05-05 12:56:10.000000000 +0100
@@ -3733,7 +3733,7 @@
if arg_dict[command]:
commands.append(command)
if len(commands) > 1:
- errors.append('%s are mutually exclusive.', ' and
'.join(commands))
+ errors.append('%s are mutually exclusive.' % ' and
'.join(commands))
if errors:
@@ -3853,7 +3853,7 @@
if db_filename == 'skip':
progress_db = StubProgressDatabase()
- elif not download and not perform_map and not dump:
+ elif not download and not perform_map and not dump and not
create_config:
progress_db = ProgressDatabase(db_filename, signature)
else:
progress_db = ExportProgressDatabase(db_filename, signature)
--
You received this message because you are subscribed to the Google Groups
"Google App Engine" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-appengine?hl=en.