Skip to content

Commit

Permalink
gdrive upload service typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ccrisan committed May 18, 2016
1 parent 15c5429 commit cecb357
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion motioneye/templates/main.html
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@
<tr class="settings-item advanced-setting" depends="uploadEnabled">
<td class="settings-item-label"><span class="settings-item-label">Upload Pictures</span></td>
<td class="settings-item-value"><input type="checkbox" class="styled storage camera-config" id="uploadPictureSwitch"></td>
<td><span class="help-mark" title="enable this if you want single frame pictures to be uploaded to an external service">?</span></td>
<td><span class="help-mark" title="enable this if you want pictures to be uploaded to an external service">?</span></td>
</tr>
<tr class="settings-item advanced-setting" depends="uploadEnabled">
<td class="settings-item-label"><span class="settings-item-label">Upload Movies</span></td>
Expand Down
2 changes: 1 addition & 1 deletion motioneye/uploadservices.py
Original file line number Diff line number Diff line change
Expand Up @@ -593,7 +593,7 @@ def _load():
data = json.load(file)

except Exception as e:
return logging.error('could not read upload services state from file "%s": %s'(file_path, e))
return logging.error('could not read upload services state from file "%s": %s' % (file_path, e))

finally:
file.close()
Expand Down

0 comments on commit cecb357

Please sign in to comment.