Skip to content

Commit

Permalink
adding support to change themes
Browse files Browse the repository at this point in the history
  • Loading branch information
barraq committed Feb 22, 2013
1 parent 94cad9e commit db8a2e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions epiceditor/widgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,5 +79,5 @@ class Media:


class AdminEpicEditorWidget(admin_widgets.AdminTextareaWidget, EpicEditorWidget):
def __init__(self, attrs=None, **kargs):
super(AdminEpicEditorWidget, self).__init__(attrs, **kargs)
def __init__(self, attrs=None, *args, **kwargs):
super(EpicEditorWidget, self).__init__(attrs, *args, **kwargs)

0 comments on commit db8a2e4

Please sign in to comment.