summaryrefslogtreecommitdiffstats
path: root/packages
diff options
context:
space:
mode:
authorJelle van der Waa <jelle@vdwaa.nl>2017-05-28 16:45:06 +0200
committerJelle van der Waa <jelle@vdwaa.nl>2017-05-28 16:45:06 +0200
commit3d1a8302bae53e200cb2b8fc73ae2117b0d1c088 (patch)
tree4875d468c24b762735ccc643d891f0ff2a68cbd5 /packages
parentd0428979d8cb60c6b99ec38a9a24981ae2e5b553 (diff)
downloadarchweb-3d1a8302bae53e200cb2b8fc73ae2117b0d1c088.tar.gz
archweb-3d1a8302bae53e200cb2b8fc73ae2117b0d1c088.zip
Make print statements Python 3 compatible
Diffstat (limited to 'packages')
-rw-r--r--packages/alpm.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/alpm.py b/packages/alpm.py
index 3762ea68..a2efd619 100644
--- a/packages/alpm.py
+++ b/packages/alpm.py
@@ -64,9 +64,9 @@ class AlpmAPI(object):
def main():
api = AlpmAPI()
- print api.version()
- print api.vercmp(1, 2)
- print api.compare_versions(1, '<', 2)
+ print(api.version())
+ print(api.vercmp(1, 2))
+ print(api.compare_versions(1, '<', 2))
if __name__ == '__main__':