diff options
author | Mattias Andrée <maandree@kth.se> | 2018-08-09 12:56:09 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2018-08-09 13:08:00 +0200 |
commit | bf3451db6f6d766b5ca0d0be9739f5d1b17f5cb2 (patch) | |
tree | d7c96b011de24ba3d7e841ed6bd48375262a671d /src/util.py | |
parent | m (diff) | |
download | xpybar-bf3451db6f6d766b5ca0d0be9739f5d1b17f5cb2.tar.gz xpybar-bf3451db6f6d766b5ca0d0be9739f5d1b17f5cb2.tar.bz2 xpybar-bf3451db6f6d766b5ca0d0be9739f5d1b17f5cb2.tar.xz |
Update for Python 3.7 (broke syntax backwards compatibility) and update year and email1.20
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
-rw-r--r-- | src/util.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/util.py b/src/util.py index 6a25461..6bd5616 100644 --- a/src/util.py +++ b/src/util.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 ''' xpybar – xmobar replacement written in python -Copyright © 2014, 2015, 2016, 2017 Mattias Andrée (maandree@member.fsf.org) +Copyright © 2014, 2015, 2016, 2017, 2018 Mattias Andrée (maandree@kth.se) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -51,7 +51,7 @@ def setproctitle(title): pass -def async(target, name = None, group = None): +def xasync(target, name = None, group = None): ''' Start a function asynchronously @@ -67,6 +67,7 @@ def async(target, name = None, group = None): t.setDaemon(True) t.start() return t +globals()['async'] = xasync ## xasync was named async until the release of Python 3.7 when it became a reserved keyword def watch(interval, target, delay = 0): |