Received: (at submit) by bugs.x2go.org; 14 Apr 2018 17:31:39 +0000
X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on
	ymir.das-netzwerkteam.de
X-Spam-Level: 
X-Spam-Status: No, score=-1.9 required=3.0 tests=BAYES_00,RCVD_IN_DNSWL_NONE,
	URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.1
Received: from localhost (localhost [127.0.0.1])
	by ymir.das-netzwerkteam.de (Postfix) with ESMTP id 4F5F35DAEA
	for <submit@bugs.x2go.org>; Sat, 14 Apr 2018 19:31:38 +0200 (CEST)
X-Virus-Scanned: Debian amavisd-new at ymir.das-netzwerkteam.de
Received: from ymir.das-netzwerkteam.de ([127.0.0.1])
	by localhost (ymir.das-netzwerkteam.de [127.0.0.1]) (amavisd-new, port 10024)
	with ESMTP id SA6l_z_kjmXs for <submit@bugs.x2go.org>;
	Sat, 14 Apr 2018 19:31:33 +0200 (CEST)
Received: from mail.nwra.com (mail.nwra.com [72.52.192.72])
	by ymir.das-netzwerkteam.de (Postfix) with ESMTPS id B071E5DA96
	for <submit@bugs.x2go.org>; Sat, 14 Apr 2018 19:31:32 +0200 (CEST)
Received: from pacas.cora.nwra.com (inferno.cora.nwra.com [208.187.183.84])
	(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
	(No client certificate requested)
	by mail.nwra.com (Postfix) with ESMTPSA id B9290340034
	for <submit@bugs.x2go.org>; Sat, 14 Apr 2018 10:31:30 -0700 (PDT)
To: submit@bugs.x2go.org
From: Orion Poplawski <orion@nwra.com>
Subject: Drop file() from pyhoca-cli
Organization: NorthWest Research Associates
Message-ID: <6c4d9c57-af03-624a-1d06-92d09d4a1815@nwra.com>
Date: Sat, 14 Apr 2018 11:31:28 -0600
User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101
 Thunderbird/52.7.0
MIME-Version: 1.0
Content-Type: multipart/mixed;
 boundary="------------8621F0BC76DC9D49E674A117"
Content-Language: en-US

This is a multi-part message in MIME format.
--------------8621F0BC76DC9D49E674A117
Content-Type: text/plain; charset=utf-8; format=flowed
Content-Transfer-Encoding: 7bit

Package: pyhoca-cli
Version: 0.5.0.4

file() is not present in python3.

-- 
Orion Poplawski
Manager of NWRA Technical Systems          720-772-5637
NWRA, Boulder/CoRA Office             FAX: 303-415-9702
3380 Mitchell Lane                       orion@nwra.com
Boulder, CO 80301                 https://www.nwra.com/

--------------8621F0BC76DC9D49E674A117
Content-Type: text/x-patch;
 name="pyhoca-cli-file.patch"
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment;
 filename="pyhoca-cli-file.patch"

diff -up pyhoca-cli-0.5.0.4/setup.py.file pyhoca-cli-0.5.0.4/setup.py
--- pyhoca-cli-0.5.0.4/setup.py.file	2017-09-24 01:58:51.000000000 -0600
+++ pyhoca-cli-0.5.0.4/setup.py	2018-04-13 19:44:37.560837443 -0600
@@ -24,7 +24,7 @@ from setuptools import setup
 
 # silence pyflakes, __VERSION__ is properly assigned below...
 __VERSION__ = '0.0.0.0'
-for line in file(os.path.join('pyhoca', 'cli', '__init__.py')).readlines():
+for line in open(os.path.join('pyhoca', 'cli', '__init__.py'),'r').readlines():
     if (line.startswith('__VERSION__')):
         exec(line.strip())
 PROGRAM_VERSION = __VERSION__

--------------8621F0BC76DC9D49E674A117--
