Skip to content

Commit a079dde

Browse files
committed
classes.info: Use current year in COPYRIGHT
1 parent 0733b4b commit a079dde

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/classes/info.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
"""
2727

2828
import os
29+
from time import strftime
2930

3031
from PyQt5.QtCore import QDir
3132

@@ -37,7 +38,7 @@
3738
GPL_VERSION = "3"
3839
DESCRIPTION = "Create and edit stunning videos, movies, and animations"
3940
COMPANY_NAME = "OpenShot Studios, LLC"
40-
COPYRIGHT = "Copyright (c) 2008-2018 %s" % COMPANY_NAME
41+
COPYRIGHT = "Copyright (c) 2008-{} {}".format(strftime("%Y"), COMPANY_NAME)
4142
CWD = os.getcwd()
4243

4344
# Application paths

0 commit comments

Comments
 (0)