Skip to content

Commit

Permalink
fix error in error handler: we must be able to pass kwargs
Browse files Browse the repository at this point in the history
git-svn-id: https://xpra.org/svn/Xpra/trunk@20880 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed Oct 30, 2018
1 parent 29d56cc commit 13e39eb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/xpra/version_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
XPRA_VERSION = xpra.__version__ #@UndefinedVariable


def log(msg, *args):
get_util_logger().debug(msg, *args)
def warn(msg, *args):
get_util_logger().warn(msg, *args)
def log(msg, *args, **kwargs):
get_util_logger().debug(msg, *args, **kwargs)
def warn(msg, *args, **kwargs):
get_util_logger().warn(msg, *args, **kwargs)


def full_version_str():
Expand Down

0 comments on commit 13e39eb

Please sign in to comment.