Skip to content

Commit

Permalink
Fix import name typo in management commands
Browse files Browse the repository at this point in the history
  • Loading branch information
yourcelf committed Nov 21, 2016
1 parent fe3e5ed commit a08d5e9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion channels_presence/management/commands/prune_presences.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from django.core.management.base import BaseCommand
from channel_presence.models import Room
from channels_presence.models import Room

class Command(BaseCommand):
def handle(self, *args, **kwargs):
Expand Down
2 changes: 1 addition & 1 deletion channels_presence/management/commands/prune_rooms.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from django.core.management.base import BaseCommand
from channel_presence.models import Room
from channels_presence.models import Room

class Command(BaseCommand):
def handle(self, *args, **kwargs):
Expand Down

0 comments on commit a08d5e9

Please sign in to comment.