summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorNejc Habjan <hab.nejc@gmail.com>2021-01-31 11:10:41 +0100
committerNejc Habjan <hab.nejc@gmail.com>2021-01-31 17:56:53 +0100
commit4bb201b92ef0dcc14a7a9c83e5600ba5b118fc33 (patch)
treebb6a33482b65595d372f6508974bdee7f45da935 /setup.py
parent48cb89bad043f7e406e2358a20512653fc40556d (diff)
downloadgitlab-4bb201b92ef0dcc14a7a9c83e5600ba5b118fc33.tar.gz
feat(api,cli): make user agent configurable
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 816d363..95390a6 100644
--- a/setup.py
+++ b/setup.py
@@ -6,7 +6,7 @@ from setuptools import find_packages
def get_version():
- with open("gitlab/__init__.py") as f:
+ with open("gitlab/__version__.py") as f:
for line in f:
if line.startswith("__version__"):
return eval(line.split("=")[-1])