Skip to content

Commit

Permalink
Working on two systems is never good.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kwpolska committed Jul 27, 2012
1 parent a92a027 commit 816eaba
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions pkgbuilder.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
#!/usr/bin/python3
# PKGBUILDer v2.1.2.27
# -*- encoding: utf-8 -*-
# PKGBUILDer v2.1.2.30
# A Python AUR helper/library.
# Copyright (C) 2011, Kwpolska
# Copyright (C) 2011-2012, Kwpolska.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
Expand Down Expand Up @@ -52,7 +53,7 @@
import gettext
import functools

VERSION = '2.1.2.27'
VERSION = '2.1.2.30'
T = gettext.translation('pkgbuilder', '/usr/share/locale', fallback='C')
_ = T.gettext

Expand Down Expand Up @@ -449,7 +450,7 @@ def auto_build(self, pkgname, validate = True, performdepcheck = True,
os.chdir('../')
fancy_warning(_('[ERR3401] Building more AUR packages is \
required.'))
for pkgname2 in build_result:
for pkgname2 in build_result[1]:
self.auto_build(pkgname2, validate, performdepcheck,
makepkginstall)
self.auto_build(pkgname, validate, performdepcheck,
Expand Down

0 comments on commit 816eaba

Please sign in to comment.