diff options
author | Calum Lind <calumlind+deluge@gmail.com> | 2015-10-24 01:58:14 +0200 |
---|---|---|
committer | Calum Lind <calumlind+deluge@gmail.com> | 2015-10-30 19:39:52 +0100 |
commit | d280fa9fbdecf3fc741e49e28281b590e2e93496 (patch) | |
tree | f836924825e75201a103b3d3e8561ba9fca8780d /version.py | |
parent | [Lint] Cleanup code to pass PyLint Warning category (diff) | |
download | deluge-d280fa9fbdecf3fc741e49e28281b590e2e93496.tar.xz deluge-d280fa9fbdecf3fc741e49e28281b590e2e93496.zip |
[Lint] Cleanup helper scripts to pass PyLint
Diffstat (limited to 'version.py')
-rwxr-xr-x | version.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/version.py b/version.py index 61decd5ec..bdda61653 100755 --- a/version.py +++ b/version.py @@ -31,11 +31,13 @@ # include RELEASE-VERSION # -__all__ = ("get_version") +from __future__ import print_function import os from subprocess import PIPE, Popen +__all__ = ("get_version") + VERSION_FILE = os.path.join(os.path.dirname(__file__), "RELEASE-VERSION") |