[Pycodeocr-main] SF.net SVN: pycodeocr:[64] branches/redesign/utils
Status: Beta
Brought to you by:
drtrigon
From: <la...@us...> - 2014-08-24 10:18:11
|
Revision: 64 http://sourceforge.net/p/pycodeocr/code/64 Author: laserb Date: 2014-08-24 10:18:01 +0000 (Sun, 24 Aug 2014) Log Message: ----------- removed no longer needed stuff Modified Paths: -------------- branches/redesign/utils/RunExternal.py branches/redesign/utils/__init__.py branches/redesign/utils/blacklist_manager.py Modified: branches/redesign/utils/RunExternal.py =================================================================== --- branches/redesign/utils/RunExternal.py 2014-08-24 07:21:52 UTC (rev 63) +++ branches/redesign/utils/RunExternal.py 2014-08-24 10:18:01 UTC (rev 64) @@ -1,5 +1,6 @@ +# -*- coding: utf8 -*- ## Run external shell command/application. -import subprocess +import subprocess, os class RunExternal: error_msg = [ "/bin/sh: " ] Modified: branches/redesign/utils/__init__.py =================================================================== --- branches/redesign/utils/__init__.py 2014-08-24 07:21:52 UTC (rev 63) +++ branches/redesign/utils/__init__.py 2014-08-24 10:18:01 UTC (rev 64) @@ -13,9 +13,7 @@ # This is the utils package with important functions. # -import utils.checksum import utils.requirements -import utils.ocr from utils.blacklist_manager import blacklist_manager from utils.RunExternal import RunExternal from logging import logging Modified: branches/redesign/utils/blacklist_manager.py =================================================================== --- branches/redesign/utils/blacklist_manager.py 2014-08-24 07:21:52 UTC (rev 63) +++ branches/redesign/utils/blacklist_manager.py 2014-08-24 10:18:01 UTC (rev 64) @@ -34,7 +34,7 @@ # create self.treeview things self.blacklist_store = gtk.ListStore(gobject.TYPE_STRING) self.blacklist_treeview.set_model(self.blacklist_store) - blackcol = gtk.TreeViewColumn("Blacklisted Devices:", gtk.CellRendererText(),text=0) + blackcol = gtk.TreeViewColumn("Blacklisted Scanner:", gtk.CellRendererText(),text=0) self.blacklist_treeview.append_column(blackcol) return This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |