|
@@ -377,7 +377,7 @@ class Yedit(object): # pragma: no cover
|
|
|
raise YeditException('Please specify a filename.')
|
|
|
|
|
|
if self.backup and self.file_exists():
|
|
|
- shutil.copy(self.filename, self.filename + '.orig')
|
|
|
+ shutil.copy(self.filename, '{}.{}'.format(self.filename, time.strftime("%Y%m%dT%H%M%S")))
|
|
|
|
|
|
# Try to set format attributes if supported
|
|
|
try:
|