[tor-commits] [sbws/master] Change version variable names

pastly at torproject.org pastly at torproject.org
Thu Aug 9 14:21:19 UTC 2018


commit b42a77f8b239071986ff0ef94757cdca901328af
Author: Matt Traudt <sirmatt at ksu.edu>
Date:   Fri Jul 13 09:43:36 2018 -0400

    Change version variable names
---
 sbws/sbws.py | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/sbws/sbws.py b/sbws/sbws.py
index c8a6378..a97e428 100644
--- a/sbws/sbws.py
+++ b/sbws/sbws.py
@@ -7,9 +7,9 @@ from sbws.util.config import get_config
 from sbws.util.config import validate_config
 from sbws.util.config import configure_logging
 from sbws.util.parser import create_parser
-from sbws import __version__ as SBWS_VERSION
-from stem import __version__ as STEM_VERSION
-from requests.__version__ import __version__ as REQ_VERSION
+from sbws import __version__ as version
+from stem import __version__ as stem_version
+from requests.__version__ import __version__ as requests_version
 import platform
 import logging
 
@@ -26,7 +26,7 @@ def _get_startup_line():
     py_ver = platform.python_version()
     py_plat = platform.platform()
     return 'sbws %s with python %s on %s, stem %s, and requests %s' % \
-        (SBWS_VERSION, py_ver, py_plat, STEM_VERSION, REQ_VERSION)
+        (version, py_ver, py_plat, stem_version, requests_version)
 
 
 def main():





More information about the tor-commits mailing list