Skip to content

Commit 5b440fa

Browse files
committed
Fix open command check in mac os
1 parent 207330a commit 5b440fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

git_repo/services/service.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
'''select open command'''
1717

18-
if 'mac' in sys.platform: #pragma: no cover
18+
if 'darwin' in sys.platform: #pragma: no cover
1919
OPEN_COMMAND = 'open'
2020
else: #pragma: no cover
2121
OPEN_COMMAND = 'xdg-open'

0 commit comments

Comments
 (0)