Philipp Hörist pushed to branch master at gajim / gajim

Commits:
91aac652 by André Apitzsch at 2018-02-23T00:20:11+01:00
setup.py: remove unused function

- - - - -


1 changed file:

- setup.py


Changes:

=====================================
setup.py
=====================================
--- a/setup.py
+++ b/setup.py
@@ -6,8 +6,6 @@ import sys
 if sys.version_info[0] < 3:
     sys.exit('Tried to install with Python 2, gajim only supports Python 3.')
 
-import codecs
-
 from setuptools import setup, find_packages
 from setuptools import Command
 from setuptools.command.build_py import build_py as _build
@@ -129,20 +127,6 @@ def build_intl(build_cmd):
         data_files.append((target, [base + '/' + filename]))
 
 
-def substitute_variables(filename_in, filename_out, subst_vars):
-    '''
-    Substitute variables in a file.
-    '''
-    f_in = codecs.open(filename_in, encoding='utf-8')
-    f_out = codecs.open(filename_out, encoding='utf-8', mode='w')
-    for line in f_in:
-        for variable, substitution in subst_vars:
-            line = line.replace(variable, substitution)
-        f_out.write(line)
-    f_in.close()
-    f_out.close()
-
-
 def merge(in_file, out_file, option, po_dir='po'):
     '''
     Run the msgfmt command.
@@ -276,7 +260,7 @@ setup(
     package_data={'gajim': package_data},
     data_files=data_files,
     install_requires=[
-        'nbxmpp>=0.6.1',
+        'nbxmpp>=0.6.3',
         'pyOpenSSL>=0.12',
         'pyasn1',
     ],



View it on GitLab: 
https://dev.gajim.org/gajim/gajim/commit/91aac652f2851c1eca88872a06160e55654283bd

---
View it on GitLab: 
https://dev.gajim.org/gajim/gajim/commit/91aac652f2851c1eca88872a06160e55654283bd
You're receiving this email because of your account on dev.gajim.org.
_______________________________________________
Commits mailing list
Commits@gajim.org
https://lists.gajim.org/cgi-bin/listinfo/commits

Reply via email to