Skip to content

Commit

Permalink
correct year (#192)
Browse files Browse the repository at this point in the history
* correct year

* f-string in aboutdialog.py

---------

Co-authored-by: Simon Billinge <[email protected]>
  • Loading branch information
Tieqiong and sbillinge authored Aug 22, 2024
1 parent 905a37f commit 998cab9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/diffpy/pdfgui/gui/aboutdialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
computer programs for studying nanostructure in crystals,
J. Phys.: Condens. Matter 19, 335219 (2007)."""

_copyright = "(c) 2005-{year},".format(year=__date__[:4])
_copyright = f"(c) 2005-{__date__[-4:]},"

_homepage = "https://www.diffpy.org"

Expand Down

0 comments on commit 998cab9

Please sign in to comment.