diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-08-10 23:47:00 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-08-10 23:47:00 +0200 |
commit | 175ea0a106e2c82f579ea211222845e219971cc9 (patch) | |
tree | 620362b8fbd249cf9e1bbaa0d98063d202960a4e /modules/home | |
parent | fix(home/beets): Generate flat playlists (diff) | |
download | nixos-config-175ea0a106e2c82f579ea211222845e219971cc9.tar.gz nixos-config-175ea0a106e2c82f579ea211222845e219971cc9.zip |
fix(home/beets): Typo in inline python code
Diffstat (limited to 'modules/home')
-rw-r--r-- | modules/home/conf/beets/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/home/conf/beets/default.nix b/modules/home/conf/beets/default.nix index 7fe1d742..643538e7 100644 --- a/modules/home/conf/beets/default.nix +++ b/modules/home/conf/beets/default.nix @@ -129,7 +129,7 @@ # import time, or we raise an NameError exception. try: myartist - except NameError + except NameError: import re return re.split(',|\\s+(feat(.?|uring)|&|(Vs|Ft).)', albumartist, 1, flags=re.IGNORECASE)[0] else: |