diff options
-rwxr-xr-x | man/simplecpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/man/simplecpp b/man/simplecpp index 000940fc..4cb58a4c 100755 --- a/man/simplecpp +++ b/man/simplecpp @@ -217,7 +217,7 @@ def read_block(stream, ignore): func(arg) else: if not ignore: - for key, value in defines.iteritems(): + for key, value in defines.items(): if isinstance(value, str): line = line.replace(key, value) print(line) |