Skip to content
This repository has been archived by the owner on May 17, 2018. It is now read-only.

Commit

Permalink
Fixes #115 the settings should be self.settings.
Browse files Browse the repository at this point in the history
  • Loading branch information
xpol committed Aug 12, 2013
1 parent 456a546 commit 291b1de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MarkdownPreview.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ def getCSS(self):
return self.getCSSOnSearchPath() + self.getOverrideCSS()

def getJS(self):
js_files = settings.get('js')
js_files = self.settings.get('js')
scripts = ''

if js_files is not None:
Expand Down

1 comment on commit 291b1de

@revolunet
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

looks like we need some tests :)

Please sign in to comment.