Skip to content

Commit

Permalink
released v2.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam Schott committed Jul 12, 2019
1 parent 415909f commit 3d74b58
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#### v2.3.3-dev1 (2019-06-03)
#### v2.3.3 (2019-07-12)

_Changed:_

Expand Down
2 changes: 1 addition & 1 deletion customxepr/gui/manager_window.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def emit(self, record):

class QErrorLogHandler(logging.Handler, QtCore.QObject):
"""
Handler which displays a message box with information about occurred errors.
Handler which emits a signal containing the error message.
"""

error_signal = QtCore.Signal(tuple)
Expand Down
2 changes: 1 addition & 1 deletion customxepr/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

__author__ = 'Sam Schott <[email protected]>'
__year__ = str(time.localtime().tm_year)
__version__ = 'v2.3.3-dev0'
__version__ = 'v2.3.3'
__url__ = 'https://customxepr.readthedocs.io'


Expand Down
4 changes: 2 additions & 2 deletions customxepr/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,9 @@ def __repr__(self):
return '<{0}({1})>'.format(self.__class__.__name__, ', '.join(info_strings))


# =============================================================================
# ========================================================================================
# custom queue which emits PyQt signals on put and get
# =============================================================================
# ========================================================================================

class SignalQueue(Queue, object):
# inherit from object explicitly since Queue in Python 2.7 does not inherit from
Expand Down

0 comments on commit 3d74b58

Please sign in to comment.