aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xelogv4
1 files changed, 2 insertions, 2 deletions
diff --git a/elogv b/elogv
index 9ead73b..86c67c2 100755
--- a/elogv
+++ b/elogv
@@ -619,8 +619,8 @@ class ElogViewer:
def show_help(self):
# Setup help window
- helpwin_height = self.height / 3 * 2
- helpwin_corner = (self.height / 6, self.width// 2 - 40)
+ helpwin_height = self.height // 3 * 2
+ helpwin_corner = (self.height // 6, self.width // 2 - 40)
helpwin = curses.newwin(helpwin_height, 80,
helpwin_corner[0], helpwin_corner[1])
helplines = helptext.splitlines()