@@ -1273,9 +1273,7 @@ def write(self, *kl, **kwargs):
1273
1273
# write the Encapsulated PostScript headers
1274
1274
print ("%!PS-Adobe-3.0 EPSF-3.0" , file = fh )
1275
1275
if title : print ("%%Title: " + title , file = fh )
1276
- < << << << d8cac234387c1bc50b4686b9568b4f5e43149957
1277
- print (("%%Creator: matplotlib version "
1278
- + __version__ + ", http://matplotlib.org/" ), file = fh )
1276
+ print ("%%Creator: " + creator_str , file = fh )
1279
1277
# get source date from SOURCE_DATE_EPOCH, if set
1280
1278
# See https://reproducible-builds.org/specs/source-date-epoch/
1281
1279
source_date_epoch = os .getenv ("SOURCE_DATE_EPOCH" )
@@ -1285,10 +1283,6 @@ def write(self, *kl, **kwargs):
1285
1283
else :
1286
1284
source_date = time .ctime ()
1287
1285
print ("%%CreationDate: " + source_date , file = fh )
1288
- == == == =
1289
- print ("%%Creator: " + creator_str , file = fh )
1290
- print ("%%CreationDate: " + time .ctime (time .time ()), file = fh )
1291
- >> >> >> > Allow to pass custom Creator to images created with ps backend
1292
1286
print ("%%%%BoundingBox: %d %d %d %d" % bbox , file = fh )
1293
1287
print ("%%EndComments" , file = fh )
1294
1288
0 commit comments