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

Commit

Permalink
Fix the format problem of missing whitespace.
Browse files Browse the repository at this point in the history
  • Loading branch information
Cryspia committed Oct 12, 2014
1 parent 9e09fbd commit 2b35cec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/freeseer/frontend/reporteditor/reporteditor.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class ReportEditorApp(FreeseerApp):
'''

def __init__(self, config, db):
FreeseerApp.__init__(self,config)
FreeseerApp.__init__(self, config)

self.db = db

Expand Down
2 changes: 1 addition & 1 deletion src/freeseer/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,4 @@ class FreeseerConfig(Config):
record_to_stream_plugin = options.StringOption('RTMP Streaming')
audio_feedback = options.BooleanOption(False)
video_preview = options.BooleanOption(True)
default_language = options.StringOption('tr_'+str(QLocale.system().name())+'.qm')
default_language = options.StringOption('tr_' + str(QLocale.system().name()) + '.qm')

0 comments on commit 2b35cec

Please sign in to comment.