Skip to content

Commit

Permalink
Fix permission related crash
Browse files Browse the repository at this point in the history
  • Loading branch information
Maselkov committed Jan 14, 2018
1 parent a92af7c commit 692fa3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gw2rpc/gw2rpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ def start_rpc():
try:
self.rpc.start()
break
except FileNotFoundError as e:
except (FileNotFoundError, PermissionError) as e:
time.sleep(10)

try:
Expand Down

0 comments on commit 692fa3c

Please sign in to comment.