aboutsummaryrefslogtreecommitdiffstats
path: root/gallery_dl/postprocessor/common.py
diff options
context:
space:
mode:
authorLibravatarUnit 193 <unit193@ubuntu.com>2019-08-26 19:34:50 -0400
committerLibravatarUnit 193 <unit193@ubuntu.com>2019-08-26 19:34:50 -0400
commitfbaff8b82a85ba1dcfa16da8af8cd98c56c9903c (patch)
tree9c903ffe82e7df731ed424d5a578deb9ffb5cfc8 /gallery_dl/postprocessor/common.py
parentfef60edee30ad08f646386be4c7f4c0ef0af7867 (diff)
parentb75d158d014d6c43d7d785c46c9372a9cf84d144 (diff)
Update upstream source from tag 'upstream/1.10.2'
Update to upstream version '1.10.2' with Debian dir 1bbf2d0fa89411dabf6ec214a5c9df700cb070ab
Diffstat (limited to 'gallery_dl/postprocessor/common.py')
-rw-r--r--gallery_dl/postprocessor/common.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/gallery_dl/postprocessor/common.py b/gallery_dl/postprocessor/common.py
index c642f0f..b967cf6 100644
--- a/gallery_dl/postprocessor/common.py
+++ b/gallery_dl/postprocessor/common.py
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
-# Copyright 2018 Mike Fährmann
+# Copyright 2018-2019 Mike Fährmann
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
@@ -23,3 +23,6 @@ class PostProcessor():
def finalize(self):
"""Cleanup"""
+
+ def __repr__(self):
+ return self.__class__.__name__