Skip to content

Commit

Permalink
terminal.py: Forgot to re-add the imap and izip import lines in the l…
Browse files Browse the repository at this point in the history
…ast commit.
  • Loading branch information
liftoff committed May 20, 2016
1 parent 13e1825 commit 89dd6b3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gateone/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
__version_info__ = (1, 2, 0)
__license__ = "AGPLv3" # ...or proprietary (see LICENSE.txt)
__author__ = 'Dan McDougall <[email protected]>'
__commit__ = "20151122132622" # Gets replaced by git (holds the date/time)
__commit__ = "20160520190741" # Gets replaced by git (holds the date/time)

import os
GATEONE_DIR = os.path.dirname(os.path.abspath(__file__))
Expand Down
2 changes: 1 addition & 1 deletion gateone/core/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
}
}
__author__ = 'Dan McDougall <[email protected]>'
__commit__ = "20151122132622" # Gets replaced by git (holds the date/time)
__commit__ = "20160520190741" # Gets replaced by git (holds the date/time)

# NOTE: Docstring includes reStructuredText markup for use with Sphinx.
__doc__ = '''\
Expand Down
2 changes: 1 addition & 1 deletion gateone/static/gateone.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions terminal/terminal.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@
from datetime import datetime, timedelta
from functools import partial
from collections import defaultdict
from itertools import imap, izip
try:
from collections import OrderedDict
except ImportError: # Python <2.7 didn't have OrderedDict in collections
Expand Down

0 comments on commit 89dd6b3

Please sign in to comment.