[Git][ghc/ghc][master] users' guide: don't use f strings in the python script to ensure compatibility with python 3.5
Marge Bot pushed to branch master at Glasgow Haskell Compiler / GHC Commits: 0f297f6e by mangoiv at 2025-12-06T11:09:44-05:00 users' guide: don't use f strings in the python script to ensure compatibility with python 3.5 - - - - - 1 changed file: - docs/users_guide/conf.py Changes: ===================================== docs/users_guide/conf.py ===================================== @@ -45,7 +45,7 @@ rst_prolog = """ # General information about the project. project = u'Glasgow Haskell Compiler' -copyright = f"{datetime.now(timezone.utc).year}, GHC Team" +copyright = "{}, GHC Team".format(datetime.now(timezone.utc).year) # N.B. version comes from ghc_config release = version # The full version, including alpha/beta/rc tags. View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/0f297f6e06f218bf88884f140f53df45... -- View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/0f297f6e06f218bf88884f140f53df45... You're receiving this email because of your account on gitlab.haskell.org.
participants (1)
-
Marge Bot (@marge-bot)