summaryrefslogtreecommitdiff
path: root/fs/commands
diff options
context:
space:
mode:
authorwillmcgugan <willmcgugan@67cdc799-7952-0410-af00-57a81ceafa0f>2011-09-10 09:15:37 +0000
committerwillmcgugan <willmcgugan@67cdc799-7952-0410-af00-57a81ceafa0f>2011-09-10 09:15:37 +0000
commit8200800c1160a5d6acde0080fc0f89cf9463bb5b (patch)
tree7cce71f030373d98b3cbb40def3d16eeb8d7ec95 /fs/commands
parent19a25b721353cc4fc2ed7adcbdb1709dc83b621d (diff)
downloadpyfilesystem-8200800c1160a5d6acde0080fc0f89cf9463bb5b.tar.gz
Fixed a circular reference issue
git-svn-id: http://pyfilesystem.googlecode.com/svn/trunk@719 67cdc799-7952-0410-af00-57a81ceafa0f
Diffstat (limited to 'fs/commands')
-rw-r--r--fs/commands/runner.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/commands/runner.py b/fs/commands/runner.py
index bf31d24..5a1f90a 100644
--- a/fs/commands/runner.py
+++ b/fs/commands/runner.py
@@ -82,7 +82,7 @@ class Command(object):
self.verbosity_level = 0
self.terminal_colors = not sys.platform.startswith('win') and self.is_terminal()
if self.is_terminal():
- w, h = getTerminalSize()
+ w, _h = getTerminalSize()
self.terminal_width = w
else:
self.terminal_width = 80