diff options
author | Calum Lind <calumlind+deluge@gmail.com> | 2016-11-26 18:47:09 +0100 |
---|---|---|
committer | Calum Lind <calumlind+deluge@gmail.com> | 2016-11-26 18:51:07 +0100 |
commit | 943a9ded00660668100d2f7c7cdba3fddb9694ea (patch) | |
tree | a63317a7a3b10665d5c031f672ec0d1ac7292983 /generate_pot.py | |
parent | Revert "[Setup] Fix buildd error with version.py import" (diff) | |
download | deluge-943a9ded00660668100d2f7c7cdba3fddb9694ea.tar.xz deluge-943a9ded00660668100d2f7c7cdba3fddb9694ea.zip |
Rename version.py to calc_version.py to fix buildd error
- There is a version.py included with buildd that is conflicting
with the deluge one. Rather than messing with sys.path it is
simplest to rename version.py to calc_version.py
Diffstat (limited to 'generate_pot.py')
-rwxr-xr-x | generate_pot.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generate_pot.py b/generate_pot.py index 0a871e1e1..c7e3d2b49 100755 --- a/generate_pot.py +++ b/generate_pot.py @@ -19,7 +19,7 @@ from datetime import datetime from subprocess import call from gen_web_gettext import create_gettext_js -from version import get_version +from calc_version import get_version # Paths to exclude EXCLUSIONS = [ |