From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id A7C2613888F for ; Tue, 6 Oct 2015 03:48:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 32A57E07A3; Tue, 6 Oct 2015 03:48:20 +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 D83F5E07A3 for ; Tue, 6 Oct 2015 03:48:19 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by smtp.gentoo.org (Postfix) with ESMTP id 228AC340634 for ; Tue, 6 Oct 2015 03:48:19 +0000 (UTC) From: Mike Frysinger To: gentoo-catalyst@lists.gentoo.org Subject: [gentoo-catalyst] [PATCH] resume: fix missing sys import Date: Mon, 5 Oct 2015 23:48:17 -0400 Message-Id: <1444103297-14564-1-git-send-email-vapier@gentoo.org> X-Mailer: git-send-email 2.5.2 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-catalyst@lists.gentoo.org Reply-to: gentoo-catalyst@lists.gentoo.org X-Archives-Salt: 2c37cac5-6be3-4f46-822f-151bbeb578d6 X-Archives-Hash: b6d5b24a24e6bf6ab00a4f925e158212 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 -- 2.5.2