dont fail if /api/upload is called without the right arguments, render api page: fixes #2611

This commit is contained in:
j 2014-12-19 16:02:32 +00:00
commit f56218e33a
2 changed files with 10 additions and 2 deletions

View file

@ -20,5 +20,5 @@ class Command(BaseCommand):
elif len(args) == 2:
target = args[0]
base = args[1]
print('update docs', target, 'base', base)
print('update documentation in ', target, 'based on', base)
documentation.update(target, base)