-
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #24 from igor-backend/master
fix memory leak
- Loading branch information
Showing
3 changed files
with
18 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
from os import path | ||
from setuptools import find_packages | ||
|
||
dir = path.abspath(path.dirname(__file__)) | ||
directory = path.abspath(path.dirname(__file__)) | ||
|
||
setup( | ||
name="bitrix24-rest", | ||
|
@@ -36,7 +36,7 @@ | |
author="Akop Kesheshyan", | ||
author_email="[email protected]", | ||
description="Easy way to communicate with bitrix24 portal over REST without OAuth", | ||
long_description=open(path.join(dir, "README.md"), encoding="utf-8").read(), | ||
long_description=open(path.join(directory, "README.md"), encoding="utf-8").read(), | ||
long_description_content_type="text/markdown", | ||
keywords="bitrix24 api rest", | ||
classifiers=[ | ||
|