From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-838723-garchives=archives.gentoo.org@lists.gentoo.org>
Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80])
	by finch.gentoo.org (Postfix) with ESMTP id 32B0213888F
	for <garchives@archives.gentoo.org>; Tue,  6 Oct 2015 13:46:34 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 7F83D21C010;
	Tue,  6 Oct 2015 13:46:27 +0000 (UTC)
Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183])
	(using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id DAF9321C04A
	for <gentoo-commits@lists.gentoo.org>; Tue,  6 Oct 2015 13:46:25 +0000 (UTC)
Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52])
	(using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id 15937340B10
	for <gentoo-commits@lists.gentoo.org>; Tue,  6 Oct 2015 13:46:24 +0000 (UTC)
Received: from localhost.localdomain (localhost [127.0.0.1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 8DCC1AB9
	for <gentoo-commits@lists.gentoo.org>; Tue,  6 Oct 2015 13:46:18 +0000 (UTC)
From: "Mike Frysinger" <vapier@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" <vapier@gentoo.org>
Message-ID: <1444102708.f1385ffad018c9f1b5250dcfb514a8de16595f8e.vapier@gentoo>
Subject: [gentoo-commits] proj/catalyst:master commit in: catalyst/base/
X-VCS-Repository: proj/catalyst
X-VCS-Files: catalyst/base/resume.py
X-VCS-Directories: catalyst/base/
X-VCS-Committer: vapier
X-VCS-Committer-Name: Mike Frysinger
X-VCS-Revision: f1385ffad018c9f1b5250dcfb514a8de16595f8e
X-VCS-Branch: master
Date: Tue,  6 Oct 2015 13:46:18 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Archives-Salt: abb90977-7be0-4455-a18f-40827385d4e8
X-Archives-Hash: 0963efb0d5d05cee0391210103abdd72

commit:     f1385ffad018c9f1b5250dcfb514a8de16595f8e
Author:     Mike Frysinger <vapier <AT> gentoo <DOT> org>
AuthorDate: Tue Oct  6 03:38:28 2015 +0000
Commit:     Mike Frysinger <vapier <AT> gentoo <DOT> org>
CommitDate: Tue Oct  6 03:38:28 2015 +0000
URL:        https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=f1385ffa

resume: fix missing sys import

This module uses the sys module but didn't actually import it.

 catalyst/base/resume.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/catalyst/base/resume.py b/catalyst/base/resume.py
index 2c006ab..a03adf3 100644
--- a/catalyst/base/resume.py
+++ b/catalyst/base/resume.py
@@ -14,6 +14,7 @@ set, unset, is_set, is_unset, enabled, clear_all
 import os
 import shutil
 from stat import ST_UID, ST_GID, ST_MODE
+import sys
 import traceback
 
 from catalyst.fileops import ensure_dirs, pjoin, listdir_files, clear_dir