Fixes: #40354 Don't hardcode my own name and email as autosave committer.
This commit is contained in:
+1
-1
@@ -142,7 +142,7 @@ class StackDisplayWorld(World):
|
||||
self.repo.stage([self.relative_STACK_FN])
|
||||
commit_id = self.repo.do_commit(
|
||||
b'auto-save',
|
||||
committer=b'Simon Forman <forman.simon@gmail.com>',
|
||||
committer=b'thun-auto-save <nobody@example.com>',
|
||||
)
|
||||
_log.info('commit %s', commit_id)
|
||||
|
||||
|
||||
+1
-4
@@ -24,10 +24,7 @@ returns a dictionary of Joy functions suitable for use with the joy()
|
||||
function.
|
||||
'''
|
||||
from __future__ import print_function
|
||||
from builtins import map
|
||||
from builtins import zip
|
||||
from builtins import range
|
||||
from builtins import object
|
||||
from builtins import map, object, range, zip
|
||||
from logging import getLogger
|
||||
|
||||
_log = getLogger(__name__)
|
||||
|
||||
Reference in New Issue
Block a user