Skip to content

Commit

Permalink
Fix #14: compilejsi18n command should skip system checks (thanks @bub…
Browse files Browse the repository at this point in the history
  • Loading branch information
Sébastien Fievet committed Aug 7, 2015
1 parent fef9f50 commit 0abf0b4
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/statici18n/management/commands/compilejsi18n.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@ class Command(NoArgsCommand):
)
help = "Collect Javascript catalog files in a single location."

def __init__(self):
super(NoArgsCommand, self).__init__()
if hasattr(self, 'requires_system_checks'):
self.requires_system_checks = False

def handle_noargs(self, **options):
locale = options.get('locale')
domain = options['domain']
Expand Down

0 comments on commit 0abf0b4

Please sign in to comment.