Skip to content

Commit

Permalink
Fix setting sigma_hour and sigma_minute for download's start time.
Browse files Browse the repository at this point in the history
  • Loading branch information
MrCapsLock committed Jan 30, 2020
1 parent ee8c781 commit a947099
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion persepolis/scripts/mainwindow.py
Expand Up @@ -803,7 +803,7 @@ def run(self):
sigma_hour = sigma_hour - 24

# setting sigma_hour and sigma_minute for download's start time!
add_link_dict['start_time'] = str(sigma_hour + ':' + sigma_minute)
add_link_dict['start_time'] = str(sigma_hour) + ':' + str(sigma_minute)

# write changes in data base
self.parent.persepolis_db.updateAddLinkTable([add_link_dict])
Expand Down

0 comments on commit a947099

Please sign in to comment.