Skip to content

Commit

Permalink
Merge pull request #50 from Radar4000/master
Browse files Browse the repository at this point in the history
Bug fix and correction in 'setup.py'.

Closes #28
  • Loading branch information
fatihbaltaci authored Sep 30, 2020
2 parents 25b0740 + 9d13d6c commit 581f5eb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion setup.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Setup file for redial.
Expand Down
6 changes: 3 additions & 3 deletions src/redial/redial.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,11 +162,11 @@ def run():
break
else:
rk = os.system(app.command)
if rk != 0:
if rk == 33280 or rk == 0:
app.command_return_key = rk
break
else:
app.command_return_key = 0
app.command_return_key = rk
break

save_ui_state(app.listbox)

Expand Down

0 comments on commit 581f5eb

Please sign in to comment.