Browse Source

add empty _s3copy method to the storage class

master
Eugen Ciur 2 years ago
parent
commit
00775cef7d
  1. 4
      changelog.md
  2. 3
      mglib/storage.py
  3. 2
      setup.cfg

4
changelog.md

@ -1,6 +1,10 @@
# Changelog
## [1.3.9] - 2021-09-19
### Added
- empty \_s3copy method to meglib.storage.Storage class
## [1.3.8] - 4 March 2020
- bug fix: reset version to 0 for newly created documents "from paste"

3
mglib/storage.py

@ -33,6 +33,9 @@ class Storage:
def download(self, doc_path_url, **kwargs):
pass
def _s3copy(self, src, dst):
pass
def make_sure_path_exists(self, filepath):
logger.debug(f"make_sure_path_exists {filepath}")
dirname = os.path.dirname(filepath)

2
setup.cfg

@ -1,6 +1,6 @@
[metadata]
name = mglib
version = 1.3.8
version = 1.3.9
description = Common code used across all Papermerge project utilities
long_description = file: README.rst
url = https://www.papermerge.com/

Loading…
Cancel
Save