Skip to content

Commit 44430ee

Browse files
Bhrigu SrivastavaBhrigu Srivastava
authored andcommitted
-t param in darwin open
1 parent a53d431 commit 44430ee

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

classifier/classifier.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
import sys
1919

2020

21-
VERSION = 'Classifier 1.99dev'
21+
VERSION = 'Classifier 2.0'
2222
DIRCONFFILE = '.classifier.conf'
2323
PLATFORM = sys.platform
2424
OS = os.name
@@ -208,7 +208,7 @@ def run(self):
208208

209209
if self.args.edittypes:
210210
if PLATFORM == 'darwin':
211-
subprocess.call(('open', CONFIG))
211+
subprocess.call(('open', '-t', CONFIG))
212212
elif PLATFORM == 'win32' or OS == 'nt':
213213
os.startfile(CONFIG)
214214
elif PLATFORM == 'linux' or PLATFORM == 'linux2' or OS == 'posix':

setup.py

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

33
setup(
44
name="classifier",
5-
version="1.99",
5+
version="2.0",
66
description="Classify the files in your Downloads folder into suitable destinations.",
77
url="http://github.com/bhrigu123/classifier",
88
author="Bhrigu Srivastava",

0 commit comments

Comments
 (0)