diff options
author | Britney Fransen <brfransen@gmail.com> | 2024-07-13 17:47:15 (GMT) |
---|---|---|
committer | Britney Fransen <brfransen@gmail.com> | 2024-07-13 17:47:15 (GMT) |
commit | b17ca6a84464c23da9d261f1f0fc8b3b397c6e36 (patch) | |
tree | 4d11b4c7a0847b6dae1fed6f56a37bceff66010d /linhes/linhes-system | |
parent | 72f7e364b968931903edc0be419410230d70a4eb (diff) | |
download | linhes_pkgbuild-b17ca6a84464c23da9d261f1f0fc8b3b397c6e36.zip linhes_pkgbuild-b17ca6a84464c23da9d261f1f0fc8b3b397c6e36.tar.gz linhes_pkgbuild-b17ca6a84464c23da9d261f1f0fc8b3b397c6e36.tar.bz2 |
linhes-system: idle.py: add escapes
Diffstat (limited to 'linhes/linhes-system')
-rwxr-xr-x | linhes/linhes-system/PKGBUILD | 4 | ||||
-rwxr-xr-x | linhes/linhes-system/idle.py | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/linhes/linhes-system/PKGBUILD b/linhes/linhes-system/PKGBUILD index c87bfb6..f59de1b 100755 --- a/linhes/linhes-system/PKGBUILD +++ b/linhes/linhes-system/PKGBUILD @@ -1,6 +1,6 @@ pkgname=linhes-system pkgver=9.0.0 -pkgrel=77 +pkgrel=78 arch=('x86_64') #install=$pkgname.install pkgdesc="Everything that makes LinHES a system" @@ -32,7 +32,7 @@ sha256sums=('e6eaa2fb4819fa60cb05b4d2e7328d2914af3a73028a735ec4d56e7ece33ecc0' 'ff261f41efec8a9963f9f59100cbe75f015028a2ed3a863ce0cb473f2ebb7b76' '8b54c31b8efde3917f603c5307bebb0a2a00239ad9a983c2f5d8120003256449' 'ae34515e144830f424d3bd3f6b1b446892d62beed20bca6f0fb19b0bbb779f27' - '5e6d128f879b0fe7c1a190cccd75d4e5d00afc161f3bc9e92ffa2d87242cc9df' + '9e52a21e9d0f3f993b819587256a1cd57dca04451d5f2d0fd76667b1d3f860f1' '3db3620b3430d1e8031596efa9eb50dea7f4c1b837c37929c3743c1eb65ac666' '6d4fb0ed1a5ed961b3a3884dce093118e50c2981a9cd5837d20abc5a6d4fd8aa' '87875d9e5f5ce18208f419698ce69b6bcbcd08955a57a4a13940e715af58b787' diff --git a/linhes/linhes-system/idle.py b/linhes/linhes-system/idle.py index 778677d..3f4b3bc 100755 --- a/linhes/linhes-system/idle.py +++ b/linhes/linhes-system/idle.py @@ -151,7 +151,7 @@ def upcoming_check(cmdargs,mythBE): break show=str(i) show=show.strip() - showtime=re.split("[-+]\d\d:\d\d",str(i.starttime))[0] + showtime=re.split("[-+]\\d\\d:\\d\\d",str(i.starttime))[0] now=time.time() rec_time=time.strptime( showtime ,"%Y-%m-%d %H:%M:%S" ) r=time.mktime(rec_time) |