Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
platform_version = platform.version()
  • Loading branch information
cclauss authored Jan 21, 2019
commit 75a5f0eb8dbd0ee7a498e8876a094ae7145ccc52
4 changes: 2 additions & 2 deletions git/test/test_remote.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@
from git.util import IterableList, rmtree, HIDE_WINDOWS_FREEZE_ERRORS
import os.path as osp

uname_version = platform.uname()[3] # platform.uname().version on Py3
IS_DIST_XENIAL = '-Ubuntu' in uname_version and '16.04' in uname_version
platform_version = platform.version()
IS_DIST_XENIAL = '-Ubuntu' in platform_version and '16.04' in platform_version

# assure we have repeatable results
random.seed(0)
Expand Down