Skip to content

Commit

Permalink
Tweak for tmux users
Browse files Browse the repository at this point in the history
  • Loading branch information
e9t committed Jun 27, 2015
1 parent 0c38f0a commit 5fa3972
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pync/TerminalNotifier.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@


class TerminalNotifier(object):
TERMINAL_NOTIFIER_VERSION = "1.6.1"
TERMINAL_NOTIFIER_VERSION = "1.6.1-rc1"

def __init__(self):
"""
Expand Down Expand Up @@ -75,7 +75,7 @@ def notify(self, message, **kwargs):

def execute(self, args):
args = [str(arg) for arg in args]
output = subprocess.Popen([self.bin_path, ] + args, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
output = subprocess.Popen(['reattach-to-user-namespace', self.bin_path, ] + args, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)

if self.wait:
output.wait()
Expand Down
2 changes: 1 addition & 1 deletion pync/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = "1.6.1"
__version__ = "1.6.1-rc1"

from .TerminalNotifier import Notifier
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
terminal_notifier_files.append(os.path.join(root, f))

setup(name = 'pync',
version = "1.6.1",
version = "1.6.1-rc1",
description = 'Python Wrapper for Mac OS 10.8 Notification Center',
long_description = long_description,
author = 'Vladislav Syabruk',
Expand Down

0 comments on commit 5fa3972

Please # to comment.