Skip to content

Commit

Permalink
Parens around print args for py3
Browse files Browse the repository at this point in the history
  • Loading branch information
josephramsay authored Jun 9, 2017
1 parent 95254b5 commit 17ce55c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions postgresql_tune.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,9 +180,9 @@ def postgres_settings(
# such setting can be even bad for very high memory systems, need show
# warnings
if total_memory >= (100 * CONST_SIZE['GB']):
print "# WARNING: not optimal for very high memory systems"
print ("# WARNING: not optimal for very high memory systems")
else:
print "# WARNING: not optimal for very high memory systems"
print ("# WARNING: not optimal for very high memory systems")

if db_version < 9.5:
# checkpoint_segments
Expand Down

0 comments on commit 17ce55c

Please sign in to comment.